CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_toKey.js22 linesDownload Raw Back to lodash-es
1import isSymbol from './isSymbol.js';2 3/** Used as references for various `Number` constants. */4var INFINITY = 1 / 0;5 6/**7 * Converts `value` to a string key if it's not a string or symbol.8 *9 * @private10 * @param {*} value The value to inspect.11 * @returns {string|symbol} Returns the key.12 */13function toKey(value) {14  if (typeof value == 'string' || isSymbol(value)) {15    return value;16  }17  var result = (value + '');18  return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;19}20 21export default toKey;22 
basant307/AI_Governance_Project · CoolFace