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.
This project is distributed under the MIT license.