Socket
Socket
Sign inDemoInstall

devalue

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devalue - npm Package Compare versions

Comparing version 5.1.0 to 5.1.1

2

package.json
{
"name": "devalue",
"description": "Gets the job done when JSON.stringify can't",
"version": "5.1.0",
"version": "5.1.1",
"repository": "Rich-Harris/devalue",

@@ -6,0 +6,0 @@ "sideEffects": false,

@@ -34,4 +34,6 @@ import {

const custom = [];
for (const key in reducers) {
custom.push({ key, fn: reducers[key] });
if (reducers) {
for (const key of Object.getOwnPropertyNames(reducers)) {
custom.push({ key, fn: reducers[key] });
}
}

@@ -38,0 +40,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