summaryrefslogtreecommitdiff
path: root/school/node_modules/lodash/_isStrictComparable.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/lodash/_isStrictComparable.js')
-rw-r--r--school/node_modules/lodash/_isStrictComparable.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/school/node_modules/lodash/_isStrictComparable.js b/school/node_modules/lodash/_isStrictComparable.js
deleted file mode 100644
index b59f40b..0000000
--- a/school/node_modules/lodash/_isStrictComparable.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var isObject = require('./isObject');
-
-/**
- * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
- *
- * @private
- * @param {*} value The value to check.
- * @returns {boolean} Returns `true` if `value` if suitable for strict
- * equality comparisons, else `false`.
- */
-function isStrictComparable(value) {
- return value === value && !isObject(value);
-}
-
-module.exports = isStrictComparable;