0.1.0 • Published 11 years ago

alias-property v0.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
11 years ago

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.

0.1.0

11 years ago