(value)
| 82 | }; |
| 83 | |
| 84 | const toKey = function (value) { |
| 85 | if (typeof value === "string" || isSymbol(value)) return value; |
| 86 | const result = `${value}`; |
| 87 | return result == "0" && 1 / value == -Infinity ? "-0" : result; |
| 88 | }; |
| 89 | |
| 90 | const get = function (object, path) { |
| 91 | path = castPath(path, object); |