Skip to content

Commit

Permalink
edited path to three geojsons
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketjay committed Jul 15, 2022
1 parent 4df9013 commit 111ee1e
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 78 deletions.
81 changes: 34 additions & 47 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -822,41 +822,37 @@ class MapServicesStore {
// TODO: KEEPING NOAA SERVICES FOR FUTURE CCC-NOAA COMPARISON
zeroFtSeaLevel: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_0ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_0_Corrected/MapServer',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/0',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_0_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
zeroFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_0ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_0_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/0',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_0_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
},
})
oneFtSeaLevel: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_1ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_1_Corrected/MapServer',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/2',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_1_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
oneFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_1ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_1_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/2',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_1_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand All @@ -865,19 +861,17 @@ class MapServicesStore {
twoFtSeaLevel: init = new esri.FeatureLayer({
url:
// 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_2ft/MapServer',
// 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_2_Corrected/MapServer',
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/5',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_2_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
twoFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_2ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_2_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/5',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_2_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand All @@ -886,19 +880,17 @@ class MapServicesStore {
threeFtSeaLevel: init = new esri.FeatureLayer({
url:
// 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_3ft/MapServer',
// 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_3_Corrected/MapServer',
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/8',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_3_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
threeFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_3ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_3_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/8',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_3_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand All @@ -907,19 +899,17 @@ class MapServicesStore {
fourFtSeaLevel: init = new esri.FeatureLayer({
url:
// 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_4ft/MapServer',
// 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_4ft_Corrected/MapServer',
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/11',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_4ft_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
fourFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_4ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_4ft_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/11',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_4ft_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand All @@ -928,19 +918,17 @@ class MapServicesStore {
fiveFtSeaLevel: init = new esri.FeatureLayer({
url:
// 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_5ft/MapServer',
// 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_5ft_Corrected/MapServer',
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/14',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_5ft_Corrected/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
fiveFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_5ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_5ft_Corrected/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/14',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_5ft_Corrected/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand All @@ -949,19 +937,17 @@ class MapServicesStore {
sixFtSeaLevel: init = new esri.FeatureLayer({
url:
// 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_6ft/MapServer',
// 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_6/MapServer',
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/17',
// opacity: 0.5,
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_6/MapServer',
opacity: 0.5,
where: "TYPE = 'Connected to Coast'",
style: function(feature) {
return {color: '#0070FF', weight: 1, fillOpacity: 0.5}
},
})
sixFtLowLyingArea: init = new esri.FeatureLayer({
// url: 'https://www.coast.noaa.gov/arcgis/rest/services/dc_slr/slr_6ft/MapServer',
// url: 'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_6/MapServer/0',
url:
'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/17',
'https://gis-services.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_6/MapServer/0',
where: "TYPE = 'Depression'",
style: function(feature) {
return {color: '#7fcdbb', weight: 1, fillOpacity: 0.9}
Expand Down Expand Up @@ -1082,18 +1068,17 @@ class GeoJSONStore {
axios
.get(
// 'https://opendata.arcgis.com/datasets/f05ed0d4a6444cb39c8642c8f4b7a199_0.geojson'
'https://opendata.arcgis.com/api/v3/datasets/f05ed0d4a6444cb39c8642c8f4b7a199_0/downloads/data?format=geojson&spatialRefId=4326'
// 'https://opendata.arcgis.com/api/v3/datasets/f05ed0d4a6444cb39c8642c8f4b7a199_0/downloads/data?format=geojson&spatialRefId=4326'
// 'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/0/query?where=1%3D1&text=&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&distance=&units=esriSRUnit_Foot&relationParam=&outFields=&returnGeometry=true&returnTrueCurves=false&maxAllowableOffset=&geometryPrecision=&outSR=&havingClause=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&historicMoment=&returnDistinctValues=false&resultOffset=&resultRecordCount=&returnExtentOnly=false&datumTransformation=&parameterValues=&rangeValues=&quantizationParameters=&featureEncoding=esriDefault&f=geojson'
'https://gis-web-assets.capecodcommission.org/ZerofootJSON.geojson'
)
.then(response => {
this.SLR_0ft_geojson = L.geoJSON(response.data)
})
.catch(error => {
// handle error
console.log(error)
alert(
'Something went wrong with load_0ft_geojson. Try reloading your page.'
)
alert('Something went wrong. Error: x111250. Try reloading your page.')
})
}

Expand All @@ -1109,7 +1094,7 @@ class GeoJSONStore {
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error: x111251. Try reloading your page.')
})
}

Expand All @@ -1125,23 +1110,24 @@ class GeoJSONStore {
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error x111252. Try reloading your page.')
})
}

load_3ft_geojson = () => {
axios
.get(
'https://opendata.arcgis.com/datasets/183f493d62f84b26a09badd0288d6b53_8.geojson'
// 'https://opendata.arcgis.com/datasets/183f493d62f84b26a09badd0288d6b53_8.geojson'
// 'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/8/query?where=1%3D1&text=&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&distance=&units=esriSRUnit_Foot&relationParam=&outFields=&returnGeometry=true&returnTrueCurves=false&maxAllowableOffset=&geometryPrecision=&outSR=&havingClause=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&historicMoment=&returnDistinctValues=false&resultOffset=&resultRecordCount=&returnExtentOnly=false&datumTransformation=&parameterValues=&rangeValues=&quantizationParameters=&featureEncoding=esriDefault&f=geojson'
'https://gis-web-assets.capecodcommission.org/ThreefootJSON.geojson'
)
.then(response => {
this.SLR_3ft_geojson = L.geoJSON(response.data)
})
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error: x111253. Try reloading your page.')
})
}

Expand All @@ -1157,23 +1143,24 @@ class GeoJSONStore {
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error: x111254. Try reloading your page.')
})
}

load_5ft_geojson = () => {
axios
.get(
'https://opendata.arcgis.com/datasets/fe799f18fbda4eb0b65d07d60bb28e3e_14.geojson'
// 'https://opendata.arcgis.com/datasets/fe799f18fbda4eb0b65d07d60bb28e3e_14.geojson'
// 'https://gis-test.capecodcommission.org/arcgis/rest/services/SeaLevelRise/SLR_Layers/MapServer/14/query?where=1%3D1&text=&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&distance=&units=esriSRUnit_Foot&relationParam=&outFields=&returnGeometry=true&returnTrueCurves=false&maxAllowableOffset=&geometryPrecision=&outSR=&havingClause=&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&gdbVersion=&historicMoment=&returnDistinctValues=false&resultOffset=&resultRecordCount=&returnExtentOnly=false&datumTransformation=&parameterValues=&rangeValues=&quantizationParameters=&featureEncoding=esriDefault&f=geojson'
'https://gis-web-assets.capecodcommission.org/FivefootJSON.geojson'
)
.then(response => {
this.SLR_5ft_geojson = L.geoJSON(response.data)
})
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error: x111255. Try reloading your page.')
})
}

Expand All @@ -1189,7 +1176,7 @@ class GeoJSONStore {
.catch(error => {
// handle error
console.log(error)
alert('Something went wrong. Try reloading your page.')
alert('Something went wrong. Error: x111256. Try reloading your page.')
})
}

Expand Down
57 changes: 26 additions & 31 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
version "1.2.0"
resolved "https://registry.yarnpkg.com/@esri/arcgis-to-geojson-utils/-/arcgis-to-geojson-utils-1.2.0.tgz#a32ef95a61cfbe5b8401ba50e86c9ea59f35a4a3"

"@terraformer/arcgis@^2.0.7":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@terraformer/arcgis/-/arcgis-2.1.1.tgz#ca362eb4f28cbe551dd611ea41644544779b803b"
integrity sha512-/METp7KZYdr/cpIBMHUSCihuxgUq8c1afpiIQPEMiaKR8Wc3ZRgU9BvezV02/0INDDpB6CKUj/XXXo8HNrctkQ==
dependencies:
"@terraformer/common" "^2.0.7"

"@terraformer/common@^2.0.7":
version "2.0.7"
resolved "https://registry.yarnpkg.com/@terraformer/common/-/common-2.0.7.tgz#bec626f331b9f0cc3aefb16f9f88e2d3684107ff"
integrity sha512-8bl+/JT0Rw6FYe2H3FfJS8uQwgzGl+UHs+8JX0TQLHgA4sMDEwObbMwo0iP3FVONwPXrPHEpC5YH7Grve0cl9A==

JSONStream@^0.8.4:
version "0.8.4"
resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-0.8.4.tgz#91657dfe6ff857483066132b4618b62e8f4887bd"
Expand Down Expand Up @@ -2205,7 +2217,7 @@ d3-dispatch@1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.3.tgz#46e1491eaa9b58c358fce5be4e8bed626e7871f8"

d3-ease@1, d3-ease@^1.0.2, d3-ease@^1.0.3:
d3-ease@1, d3-ease@^1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.3.tgz#68bfbc349338a380c44d8acc4fbc3304aa2d8c0e"

Expand Down Expand Up @@ -2235,18 +2247,7 @@ d3-scale@^1.0.6:
d3-time "1"
d3-time-format "2"

d3-scale@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.1.0.tgz#8d3fd3e2a7c9080782a523c08507c5248289eef8"
dependencies:
d3-array "^1.2.0"
d3-collection "1"
d3-format "1"
d3-interpolate "1"
d3-time "1"
d3-time-format "2"

d3-selection@^1.1.0, d3-selection@^1.3.0:
d3-selection@^1.1.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.3.0.tgz#d53772382d3dc4f7507bfb28bcd2d6aed2a0ad6d"

Expand All @@ -2266,11 +2267,11 @@ d3-time@1:
version "1.0.8"
resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.0.8.tgz#dbd2d6007bf416fe67a76d17947b784bffea1e84"

d3-timer@1, d3-timer@^1.0.3, d3-timer@^1.0.7:
d3-timer@1, d3-timer@^1.0.3:
version "1.0.7"
resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.7.tgz#df9650ca587f6c96607ff4e60cc38229e8dd8531"

d3-transition@^1.1.0, d3-transition@^1.1.1:
d3-transition@^1.1.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.1.1.tgz#d8ef89c3b848735b060e54a39b32aaebaa421039"
dependencies:
Expand Down Expand Up @@ -2542,10 +2543,6 @@ dom-serializer@0:
domelementtype "~1.1.1"
entities "~1.1.1"

dom-to-image@^2.5.2:
version "2.6.0"
resolved "https://registry.yarnpkg.com/dom-to-image/-/dom-to-image-2.6.0.tgz#8a503608088c87b1c22f9034ae032e1898955867"

dom-urls@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/dom-urls/-/dom-urls-1.1.0.tgz#001ddf81628cd1e706125c7176f53ccec55d918e"
Expand Down Expand Up @@ -3099,6 +3096,14 @@ esri-leaflet@^2.0.0, esri-leaflet@^2.1.4:
leaflet-virtual-grid "^1.0.5"
tiny-binary-search "^1.0.2"

esri-leaflet@^2.2.1:
version "2.5.3"
resolved "https://registry.yarnpkg.com/esri-leaflet/-/esri-leaflet-2.5.3.tgz#ccf0c7463c7f9b6dfe27aab478740c3dbd8fe25b"
integrity sha512-zapunrhhhKyiVP5NCSfFjD7YqWYYYD3OONVjBFWZgX2KbD6ssUQ3KnXVo2U0hswWfJDIoHF7g9PLZ4rDNuQnvA==
dependencies:
"@terraformer/arcgis" "^2.0.7"
tiny-binary-search "^1.0.3"

estraverse@^1.9.1:
version "1.9.3"
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44"
Expand Down Expand Up @@ -3379,10 +3384,6 @@ [email protected]:
dependencies:
loader-utils "^1.0.2"

file-saver@^1.3.3:
version "1.3.8"
resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8"

filename-regex@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.0.tgz#996e3e80479b98b9897f15a8a58b3d084e926775"
Expand Down Expand Up @@ -5048,13 +5049,6 @@ ldjson-stream@^1.2.1:
split2 "^0.2.1"
through2 "^0.6.1"

leaflet-easyprint@^2.1.9:
version "2.1.9"
resolved "https://registry.yarnpkg.com/leaflet-easyprint/-/leaflet-easyprint-2.1.9.tgz#ed395c7e1e377a5cdd944f7cc07216feae9db833"
dependencies:
dom-to-image "^2.5.2"
file-saver "^1.3.3"

leaflet-virtual-grid@^1.0.5:
version "1.0.6"
resolved "https://registry.yarnpkg.com/leaflet-virtual-grid/-/leaflet-virtual-grid-1.0.6.tgz#fdb4005f0e0fa84ac90d4f2172a97dd5618cf84b"
Expand Down Expand Up @@ -8459,9 +8453,10 @@ timers-browserify@^2.0.2:
dependencies:
setimmediate "^1.0.4"

tiny-binary-search@^1.0.2:
tiny-binary-search@^1.0.2, tiny-binary-search@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/tiny-binary-search/-/tiny-binary-search-1.0.3.tgz#9d52e3d16dd1171eb74486caf704ba08c0c62186"
integrity sha512-STSHX/L5nI9WTLv6wrzJbAPbO7OIISX83KFBh2GVbX1Uz/vgZOU/ANn/8iV6t35yMTpoPzzO+3OQid3mifE0CA==

tmp@^0.0.31:
version "0.0.31"
Expand Down

0 comments on commit 111ee1e

Please sign in to comment.