Skip to content

Instantly share code, notes, and snippets.

@codeimpossible
Created July 10, 2013 21:17
Show Gist options
  • Save codeimpossible/5970410 to your computer and use it in GitHub Desktop.
Save codeimpossible/5970410 to your computer and use it in GitHub Desktop.
# Trim a set of permissions properties off of our model:
clone = @.omit _.filter @.keys, (key) -> !key.indexOf 'can_'
// Trim a set of permissions properties off of our model:
var clone = this.omit( _.filter( this.keys(), function( key ) {
return !key.indexOf('can_');
} ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment