scoped-bindable-object
v0.0.4
Published
subindable.js =============
Downloads
5
Readme
Subindable.js allows you to inherit properties from a parent bindable.Object. It's used in Mojo.js.
var subindable = require("subindable");
var p = new subindable.Object({ name: "craig" }),
c = new subindable.Object({}, p); // second param = parent
console.log(c.get("name")); // craig
p.set("name", "jake"));
console.log(c.get("name")); // jake