Socket
Socket
Sign inDemoInstall

telejson

Package Overview
Dependencies
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

telejson - npm Package Compare versions

Comparing version 5.0.1 to 5.0.2

8

dist/index.js

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

var mutator = function mutator() {
var mutated = {};
var mutated = new Map();
return function mutateUndefined(value) {

@@ -410,4 +410,4 @@ // JSON.parse will not output keys with value of undefined

value[k] = undefined;
} else if (!mutated[v]) {
mutated[v] = true;
} else if (!mutated.get(v)) {
mutated.set(v, true);
mutateUndefined(v);

@@ -420,3 +420,3 @@ }

value.forEach(function (v) {
mutated[v] = true;
mutated.set(v, true);
mutateUndefined(v);

@@ -423,0 +423,0 @@ });

{
"name": "telejson",
"version": "5.0.1",
"version": "5.0.2",
"description": "",

@@ -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