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

obey

Package Overview
Dependencies
Maintainers
3
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

obey - npm Package Compare versions

Comparing version 1.6.0 to 1.6.1

8

build/lib/error.js

@@ -39,3 +39,9 @@ 'use strict';

Object.defineProperty(this, 'collection', { value: message });
Error.captureStackTrace(this, ValidationError);
// Fixes captureStackTrace missing on Safari
if (typeof Error.captureStackTrace === 'function') {
Error.captureStackTrace(this, ValidationError);
} else {
this.stack = new Error().stack;
}
}

@@ -42,0 +48,0 @@

2

package.json
{
"name": "obey",
"version": "1.6.0",
"version": "1.6.1",
"description": "Data modelling and validation library",

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

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