0.1.1 • Published 9 years ago

corazon v0.1.1

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

Corazón

NPM version Build status Code Climate Coverage Status Dependencies devDependencies

An elegant JS class system at the heart of Azul.js.

var Class = require('corazon/class');

var Person = Class.extend({
  init: function(firstName, lastName) {
    console.log('creating the person %s %s', firstName, lastName);
  }
});

var person = Person.create('Whitney', 'Young');

See usage details on the Azul.js website.

License

This project is distributed under the MIT license.