Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@hapi/hoek

Package Overview
Dependencies
Maintainers
7
Versions
44
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 9.1.0 to 9.1.1

11

lib/applyToDefaults.js

@@ -69,3 +69,4 @@ 'use strict';

return Merge(copy, source, { mergeArrays: false, nullOverride: false });
const nullOverride = options.nullOverride !== undefined ? options.nullOverride : false;
return Merge(copy, source, { nullOverride, mergeArrays: false });
};

@@ -81,3 +82,9 @@

src = src[segment];
const val = src[segment];
if (typeof val !== 'object' || val === null) {
return;
}
src = val;
}

@@ -84,0 +91,0 @@

5

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

@@ -17,3 +17,4 @@ "main": "lib/index.js",

"@hapi/code": "8.x.x",
"@hapi/lab": "^23.0.0"
"@hapi/lab": "^24.0.0",
"typescript": "~4.0.2"
},

@@ -20,0 +21,0 @@ "scripts": {

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