toPath
_.toPath(value)
创建 value
为属性路径的数组
参数
value (*)
要转换的值
返回值 (Array)
返回包含属性路径的数组
示例
_.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