1.0.0 • Published 9 years ago

observ-delegate v1.0.0

Weekly downloads
2
License
LGPLv3
Repository
github
Last release
9 years ago

ObservDelegate

The same as Observ, except you can .set() another Observ instance to delegate to.

Example

var Struct = require("observ-struct")
var Delegate = require("observ-delegate")

var v = Delegate("initial value")

v(function onchange(newValue) {
  assert.equal(newValue.struct, "new value")
})
v.set(Struct({struct: "new value"}))

var curr = v()
assert.equal(curr.struct, "new value")

Docs

The same API as Observ, except we have another .get() method that returns the observable we delegate to.

1.0.0

9 years ago