An expressive, cross platform JavaScript Class provider with a classical interface to prototypal inheritance.
示例代码:
var Person = klass(function (name) { this.name = name }) .statics({ head: ':)', feet: '_|_' }) .methods({ walk: function () {} })