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

@koopjs/featureserver

Package Overview
Dependencies
Maintainers
7
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@koopjs/featureserver - npm Package Compare versions

Comparing version 8.1.8 to 8.1.9

3

package.json
{
"name": "@koopjs/featureserver",
"version": "8.1.8",
"version": "8.1.9",
"description": "*An open source implementation of the GeoServices specification*",

@@ -38,2 +38,3 @@ "main": "src/index.js",

"lodash": "^4.17.21",
"postgres-date": "^2.1.0",
"wkt-parser": "^1.3.3"

@@ -40,0 +41,0 @@ },

const _ = require('lodash');
const {
isValidISODateString,
isValidDate
isValidDate,
} = require('iso-datestring-validator');
const dateTimeParser = require('postgres-date');

@@ -27,3 +28,3 @@ const PROBLEMATIC_STRING_SYMBOLS = ['(', '[', '*', '+', '\\', '?'];

return (value instanceof Date || (typeof value === 'string') && (isValidDate(value) || isValidISODateString(value)));
return (value instanceof Date || (typeof value === 'string') && !!(dateTimeParser(value) || isValidDate(value) || isValidISODateString(value)));
}

@@ -30,0 +31,0 @@

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