Lodash - toPath method



Syntax

_.toPath(value)

Converts value to a property path array.

Arguments

  • value (*) − The value to convert.

Output

  • (Array) − Returns the new property path array.

Example

var _ = require('lodash');

console.log(_.toPath('a.b.c'));
console.log(_.toPath('a[0].b.c'));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 'a', 'b', 'c' ]
[ 'a', '0', 'b', 'c' ]
lodash_util.htm
Advertisements