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");
  }
});
 
 

Readme

Keywords

none

Package Sidebar

Install

npm i structr

Weekly Downloads

36,729

Version

0.3.2

License

none

Last publish

Collaborators

  • architectd