Skip to content

Instantly share code, notes, and snippets.

@tdegrunt
Created November 28, 2011 10:49
Show Gist options
  • Save tdegrunt/1399955 to your computer and use it in GitHub Desktop.
Save tdegrunt/1399955 to your computer and use it in GitHub Desktop.
Batman.Model custom accessor sample
class User extends Batman.Model
@accessor 'age', set: (k, v) ->
@set('age', +v) #=> Will cause infinite loop
@[k] = v #=> Use this instead
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment