accessory

1.1.0 • Public • Published

accessory Build Status

Create property accessor/caller statements for dot paths

Install

$ npm install --save accessory

Usage

var accessory = require('accessory')
 
accessory('window', 'foo.bar')
//=> window['foo']['bar']
 
accessory('window', 'foo\\.bar')
//=> window['foo.bar']
 
accessory('window', 'foo.bar(baz)')
//=> window['foo']['bar'](baz)

API

accessory(source, path) -> string

source

Required
Type: string

The source identifier which will prepend the accessors.

path

Required
Type: string

A dot property path, including function calls.

License

MIT © Ben Drucker

Package Sidebar

Install

npm i accessory

Weekly Downloads

21,209

Version

1.1.0

License

MIT

Last publish

Collaborators

  • bendrucker