Files
lodash/toPath.js
John-David Dalton 6cb3460fce Remove semicolons.
2017-02-05 22:22:04 -08:00

31 lines
767 B
JavaScript

import arrayMap from './.internal/arrayMap.js'
import copyArray from './.internal/copyArray.js'
import isSymbol from './isSymbol.js'
import stringToPath from './.internal/stringToPath.js'
import toKey from './.internal/toKey.js'
import toString from './toString.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 arrayMap(value, toKey)
}
return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value)))
}
export default toPath