caplet.js
caplet.js copied to clipboard
schema helper
trafficstars
should be a separate repo
var Person = caplet.createModelClass({
schema: {
firstName: String,
lastName: String
},
initialize: function() {
setSchema(this, this.schema);
}
});
var p = Person();
p.validate()