caplet.js icon indicating copy to clipboard operation
caplet.js copied to clipboard

schema helper

Open crcn opened this issue 10 years ago • 0 comments
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()

crcn avatar Apr 13 '15 20:04 crcn