Socket
Socket
Sign inDemoInstall

builder-util

Package Overview
Dependencies
Maintainers
2
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

builder-util - npm Package Compare versions

Comparing version 23.0.8 to 23.0.9

1

out/arch.js

@@ -43,2 +43,3 @@ "use strict";

return Arch.arm64;
case "arm":
case "armv7l":

@@ -45,0 +46,0 @@ return Arch.armv7l;

@@ -19,3 +19,9 @@ "use strict";

if (prevValue == null || value == null || !isObject(prevValue) || !isObject(value)) {
target[key] = value;
// Merge arrays.
if (Array.isArray(prevValue) && Array.isArray(value)) {
target[key] = prevValue.concat(value);
}
else {
target[key] = value;
}
}

@@ -22,0 +28,0 @@ else {

2

package.json
{
"name": "builder-util",
"version": "23.0.8",
"version": "23.0.9",
"main": "out/util.js",

@@ -5,0 +5,0 @@ "author": "Vladimir Krivosheev",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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