1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 08:35:23 +00:00
notes/node_modules/lodash/_isKeyable.js

16 lines
430 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/**
* 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);
}
module.exports = isKeyable;