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

compress-json

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compress-json - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

dist/core.js

@@ -49,3 +49,3 @@ "use strict";

function decode(values, key) {
if (key === '') {
if (key === '' || key === '_') {
return null;

@@ -52,0 +52,0 @@ }

@@ -118,3 +118,4 @@ "use strict";

const v = o[i];
acc += '|' + addValue(mem, v, o);
const key = v === null ? '_' : addValue(mem, v, o);
acc += '|' + key;
}

@@ -121,0 +122,0 @@ if (acc === 'a') {

{
"name": "compress-json",
"version": "2.0.0",
"version": "2.0.1",
"description": "convert JSON data to space efficient format",

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

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