Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Util” Methods

_.toPath(value)

转化 value 为属性路径的数组 。

添加版本

4.0.0

参数

  1. value (*): 要转换的值

返回

(Array): 返回包含属性路径的数组。

例子

_.toPath('a.b.c');
// => ['a', 'b', 'c']
 
_.toPath('a[0].b.c');
// => ['a', '0', 'b', 'c']

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods