COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220222542/https://github.com/lodash/lodash/blob/master/toPath.js
Permalink
Cannot retrieve contributors at this time
29 lines (27 sloc)
695 Bytes
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
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.