Socket
Socket
Sign inDemoInstall

@hapi/hoek

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hapi/hoek - npm Package Compare versions

Comparing version 6.2.2 to 6.2.3

15

lib/index.js

@@ -54,2 +54,17 @@ 'use strict';

}
else if (obj instanceof Set) {
newObj = new Set();
cloneDeep = true;
for (const val of obj) {
newObj.add(exports.clone(val));
}
}
else if (obj instanceof Map) {
newObj = new Map();
cloneDeep = true;
for (let [key, value] of obj) {
value = exports.clone(value);
newObj.set(key, value);
}
}
else {

@@ -56,0 +71,0 @@ if (options.prototype !== false) { // Defaults to true

2

package.json
{
"name": "@hapi/hoek",
"description": "General purpose node utilities",
"version": "6.2.2",
"version": "6.2.3",
"repository": "git://github.com/hapijs/hoek",

@@ -6,0 +6,0 @@ "main": "lib/index.js",

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