_.toPath

_.toPath(value)

source npm package

Converts value to a property path array.

Since

4.0.0

Arguments

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