alias-property

0.1.0 • Public • Published

alias-property

create robust aliases for an object's properties

Installation

With packin or component

$ packin add jkroso/alias-property

then in your app:

var alias = require('alias-property')

API

alias(obj, to, from)

create an alias from from to to

var obj = {a:1}
alias(obj, 'a', 'b')
obj.a // => 1
obj.b // => 1
obj.b = 2
obj.a // => 2
obj.b // => 2
obj.a = 3
obj.a // => 3
obj.b // => 3

Running the tests

Just run make and navigate your browser to the test directory.

Readme

Keywords

Package Sidebar

Install

npm i alias-property

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • jkroso