Takaro - v0.4.11
    Preparing search index...

    Function toPath

    • Converts value to a property path array.

      Parameters

      • value: any

        The value to convert.

      Returns string[]

      Returns the new property path 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