npm.io
1.1.0 • Published 11 years ago

accessory

Licence
MIT
Version
1.1.0
Deps
3
Vulns
0
Weekly
0
Stars
2

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

Keywords