Socket
Socket
Sign inDemoInstall

vega-encode

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-encode - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

3

build/vega-encode.js

@@ -39,3 +39,4 @@ (function (global, factory) {

return ticks.filter(function(v) {
return !((v = scale$$1(v)) < lo || v > hi)
v = scale$$1(v);
return !(v < lo || v > hi)
});

@@ -42,0 +43,0 @@ }

{
"name": "vega-encode",
"version": "1.0.0",
"version": "1.0.1",
"description": "Visual encoding transforms for Vega dataflows.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -26,3 +26,4 @@ import {Log} from './scale-types';

return ticks.filter(function(v) {
return !((v = scale(v)) < lo || v > hi)
v = scale(v);
return !(v < lo || v > hi)
});

@@ -29,0 +30,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