@bbn/bbn 1.0.280 → 1.0.281
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bbn.js.map +1 -1
- package/dist/fn/type/isSame.js +1 -1
- package/package.json +1 -1
package/dist/fn/type/isSame.js
CHANGED
|
@@ -68,7 +68,7 @@ export default function isSame(obj1, obj2, done) {
|
|
|
68
68
|
});
|
|
69
69
|
return ok_1;
|
|
70
70
|
}
|
|
71
|
-
else if (obj1 && obj2 && typeof obj1 === 'function' && typeof obj2 === 'function') {
|
|
71
|
+
else if (obj1 && obj2 && (typeof obj1 === 'function') && (typeof obj2 === 'function')) {
|
|
72
72
|
var tmp1 = analyzeFunction(obj1);
|
|
73
73
|
var tmp2 = analyzeFunction(obj2);
|
|
74
74
|
var isSame_1 = tmp1.hash === tmp2.hash;
|