服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

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']