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

hadron-type-checker

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hadron-type-checker - npm Package Compare versions

Comparing version 0.0.0-next-9acb1d074fcbf6aa34b275f617178f0f155ff495 to 0.0.0-next-9b0315879799f8d884944b6779b44976609f2e2a

@@ -0,1 +1,2 @@

'use strict';
module.exports = require('./src/type-checker');

@@ -10,3 +10,3 @@ {

"homepage": "https://github.com/mongodb-js/compass",
"version": "0.0.0-next-9acb1d074fcbf6aa34b275f617178f0f155ff495",
"version": "0.0.0-next-9b0315879799f8d884944b6779b44976609f2e2a",
"repository": {

@@ -27,8 +27,8 @@ "type": "git",

"lint": "eslint \"./{src,lib,test,bin}/**/*.{js,jsx,ts,tsx}\" \"./*.js\" --no-error-on-unmatched-pattern",
"depcheck": "depcheck",
"depcheck": "compass-scripts check-peer-deps && depcheck",
"test-ci": "npm run test"
},
"dependencies": {
"bson": "^5.0.1",
"lodash": "^4.17.15"
"bson": "^6.7.0",
"lodash": "^4.17.21"
},

@@ -40,5 +40,5 @@ "devDependencies": {

"eslint-config-mongodb-js": "^5.0.3",
"mocha": "^8.0.1"
"mocha": "^10.2.0"
},
"gitHead": "9acb1d074fcbf6aa34b275f617178f0f155ff495"
"gitHead": "9b0315879799f8d884944b6779b44976609f2e2a"
}

@@ -0,1 +1,2 @@

'use strict';
const {

@@ -325,3 +326,3 @@ isPlainObject,

}
return result === OBJECT_TYPE ? EMPTY : result;
return result === OBJECT_TYPE && result !== object ? EMPTY : result;
}

@@ -328,0 +329,0 @@