Socket
Socket
Sign inDemoInstall

fast-safe-stringify

Package Overview
Dependencies
0
Maintainers
3
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.2.2 to 1.2.3

.travis.yml

8

index.js

@@ -37,6 +37,6 @@ module.exports = stringify

stack.push(val)
var keys = Object.keys(val)
for (var j = 0; j < keys.length; j++) {
var key = keys[j]
decirc(val[key], key, stack, val)
for (var key in val) {
if (Object.prototype.hasOwnProperty.call(val, key)) {
decirc(val[key], key, stack, val)
}
}

@@ -43,0 +43,0 @@ stack.pop()

{
"name": "fast-safe-stringify",
"version": "1.2.2",
"version": "1.2.3",
"description": "Safely and quickly serialize JavaScript objects",

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc