Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
29 lines (27 sloc)
695 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import map from './map.js' | |
import copyArray from './.internal/copyArray.js' | |
import isSymbol from './isSymbol.js' | |
import stringToPath from './.internal/stringToPath.js' | |
import toKey from './.internal/toKey.js' | |
/** | |
* Converts `value` to a property path array. | |
* | |
* @since 4.0.0 | |
* @category Util | |
* @param {*} value The value to convert. | |
* @returns {Array} Returns the new property path array. | |
* @example | |
* | |
* toPath('a.b.c') | |
* // => ['a', 'b', 'c'] | |
* | |
* toPath('a[0].b.c') | |
* // => ['a', '0', 'b', 'c'] | |
*/ | |
function toPath(value) { | |
if (Array.isArray(value)) { | |
return map(value, toKey) | |
} | |
return isSymbol(value) ? [value] : copyArray(stringToPath(value)) | |
} | |
export default toPath |