![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | node_modules/ | 2 years ago | - | |
![]() | LICENSE | 10 years ago | 1.1K | |
![]() | README.md | 10 years ago | 2.3K | d768d73 docs [كارل مبارك] |
![]() | index.js | 9 years ago | 663 | 3e510ca test new git [كارل مبارك] |
![]() | package.json | 2 years ago | 1.8K | 3e510ca test new git [كارل مبارك] |
Create an object path from a list or array of strings.
Install with npm
$ npm i to-object-path --save
var toPath = require('to-object-path');
toPath('foo', 'bar', 'baz');
toPath('foo', ['bar', 'baz']);
//=> 'foo.bar.baz'
Also supports passing an arguments object (without having to slice args):
function foo()
return toPath(arguments);
}
foo('foo', 'bar', 'baz');
foo('foo', ['bar', 'baz']);
//=> 'foo.bar.baz'
Visit the example to see how this could be used in an application.
a.b.c
) to get a nested value from an object. | homepage'a.b.c'
) paths. | homepageInstall dev dependencies:
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Jon Schlinkert
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb-cli on October 28, 2015.