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.2.0 to 2.2.1

5

dist/combine-objectids-and-where/index.js

@@ -27,4 +27,7 @@ "use strict";

function normalizeObjectIds(objectIds) {
return Array.isArray(objectIds) ? objectIds : objectIds.split(',');
if (Array.isArray(objectIds)) {
return objectIds;
}
return (typeof objectIds === 'string') ? objectIds.split(',') : [objectIds];
}
//# sourceMappingURL=index.js.map

2

package.json
{
"name": "@koopjs/geoservice-utils",
"version": "2.2.0",
"version": "2.2.1",
"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