structr

0.3.2 • Public • Published

Structr is a thin class library that helps create, and extend prototypes.

Example

 
 
function Animal(name) {
  this.name = name;
}
 
function Cat(name) {
  Cat.__super__.apply(this, arguments);
}
 
structr(Animal, Cat, {
  meow: function() {
    console.log(this.name + ": meow");
  }
});
 
 

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i structr

    Weekly Downloads

    102,610

    Version

    0.3.2

    License

    none

    Last publish

    Collaborators

    • architectd