Created
October 25, 2011 00:49
-
-
Save BrianGenisio/1310972 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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