UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 253 B
export default toKey; /** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ declare function toKey(value: any): string | symbol;