flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
15
BACK_BACK/node_modules/lodash-es/_isStrictComparable.js
generated
vendored
Executable file
15
BACK_BACK/node_modules/lodash-es/_isStrictComparable.js
generated
vendored
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
import isObject from './isObject.js';
|
||||
|
||||
/**
|
||||
* 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);
|
||||
}
|
||||
|
||||
export default isStrictComparable;
|
||||
Loading…
Add table
Add a link
Reference in a new issue