Skip to content

Instantly share code, notes, and snippets.

@bayleedev
Last active August 29, 2015 14:04
Show Gist options
  • Save bayleedev/8291f76ef127d312884e to your computer and use it in GitHub Desktop.
Save bayleedev/8291f76ef127d312884e to your computer and use it in GitHub Desktop.
_.mixin
empty: (item) ->
item instanceof Array && item.length == 0 || '0' == item || !item
_.mixin({
empty: function(item) {
return item instanceof Array && item.length === 0 || '0' === item || !item;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment