no message

This commit is contained in:
A1300399510
2024-01-03 19:11:30 +08:00
parent 3778105266
commit 2ddfc65699
941 changed files with 140454 additions and 26 deletions

15
.output/server/node_modules/lodash-es/_isKeyable.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/**
* Checks if `value` is suitable for use as unique object key.
*
* @private
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is suitable, else `false`.
*/
function isKeyable(value) {
var type = typeof value;
return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')
? (value !== '__proto__')
: (value === null);
}
export default isKeyable;