Socket
Socket
Sign inDemoInstall

vega-scenegraph

Package Overview
Dependencies
Maintainers
2
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-scenegraph - npm Package Compare versions

Comparing version 2.0.0-beta.12 to 2.0.0-beta.13

6

package.json
{
"name": "vega-scenegraph",
"version": "2.0.0-beta.12",
"version": "2.0.0-beta.13",
"description": "Vega scenegraph and renderers.",

@@ -38,6 +38,6 @@ "license": "BSD-3-Clause",

"vega-loader": ">=2.0.0-beta.3",
"vega-util": "1"
"vega-util": "^1.1"
},
"optionalDependencies": {
"canvas": "^1.4.0"
"canvas": "^1.6"
},

@@ -44,0 +44,0 @@ "devDependencies": {

@@ -11,3 +11,2 @@ import pathParse from '../path/parse';

: (isNumber(a) && isNumber(b)) ? Math.abs(a - b) <= TOLERANCE
// : (!a || !b || typeof a != 'object' && typeof b != 'object') ? a == b
: (!a || !b || !isObject(a) && !isObject(b)) ? a == b

@@ -27,7 +26,2 @@ : (a == null || b == null) ? false

// try {
// ka = Object.keys(a);
// kb = Object.keys(b);
// } catch (e) { return false; }
if (ka.length !== kb.length) return false;

@@ -34,0 +28,0 @@

Sorry, the diff of this file is too big to display

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