Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@koopjs/geoservice-utils

Package Overview
Dependencies
Maintainers
7
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@koopjs/geoservice-utils - npm Package Compare versions

Comparing version 2.1.3 to 2.2.0

7

dist/standardize-geometry-filter/index.js

@@ -61,3 +61,8 @@ "use strict";

function parseString(param) {
return param.split(',').map((item) => Number(item.trim()));
try {
return JSON.parse(param);
}
catch (error) {
return param.split(',').map((item) => Number(item.trim()));
}
}

@@ -64,0 +69,0 @@ function extractGeometryFilterSpatialReference(filter) {

2

package.json
{
"name": "@koopjs/geoservice-utils",
"version": "2.1.3",
"version": "2.2.0",
"description": "A set of utilities for working with Geoservice requests and parameters.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc