Package Exports
- dot-parts
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dot-parts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
dot-parts 
Split a dot property into its parts
Install
$ npm install --save dot-parts
Usage
var dotParts = require('dot-parts')
// normal
dotParts('foo.bar.baz')
//=> ['foo', 'bar', 'baz']
// escaping with \\
dotParts('foo\\.bar', 'baz')
//=> ['foo.bar', 'baz']
API
dotParts(path)
-> array[string]
path
Required
Type: string
A dot-delimeted path.
License
MIT © Ben Drucker