Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

dot-parts

bendrucker95.8kMIT1.0.1

Split a dot property into its parts

dot, prop, identifier, part

readme

dot-parts Build Status

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