mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
741 B
35 lines
741 B
9 years ago
|
var arrayMap = require('./_arrayMap'),
|
||
|
isArray = require('./isArray'),
|
||
|
stringToPath = require('./_stringToPath');
|
||
|
|
||
|
/**
|
||
|
* Converts `value` to a property path array.
|
||
|
*
|
||
|
* @static
|
||
|
* @memberOf _
|
||
|
* @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']
|
||
|
*
|
||
|
* var path = ['a', 'b', 'c'],
|
||
|
* newPath = _.toPath(path);
|
||
|
*
|
||
|
* console.log(newPath);
|
||
|
* // => ['a', 'b', 'c']
|
||
|
*
|
||
|
* console.log(path === newPath);
|
||
|
* // => false
|
||
|
*/
|
||
|
function toPath(value) {
|
||
|
return isArray(value) ? arrayMap(value, String) : stringToPath(value);
|
||
|
}
|
||
|
|
||
|
module.exports = toPath;
|