Skip to content

Instantly share code, notes, and snippets.

@BrianGenisio
Created October 25, 2011 00:49
Show Gist options
  • Save BrianGenisio/1310972 to your computer and use it in GitHub Desktop.
Save BrianGenisio/1310972 to your computer and use it in GitHub Desktop.
var model = Backbone.Model.extend({
setProcessors: {
"name": requireLowerCase,
"sometingElse": someOtherFunction
},
requireLowerCase: function(value) {
return value.toLowerCase();
},
someOtherFunction: function(value) {
// Do something else
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment