Skip to content

Instantly share code, notes, and snippets.

@hungtatai
Created September 8, 2013 03:53
Show Gist options
  • Save hungtatai/6481700 to your computer and use it in GitHub Desktop.
Save hungtatai/6481700 to your computer and use it in GitHub Desktop.
var isWithoutNull = function(){
return arguments.length === _.without(arguments, void 0, null).length;
};
isWithoutNull("a") #true
isWithoutNull("a", null) #false
isWithoutNull(null) #false
isWithoutNull(1) #true
isWithoutNull(1, window.a) #false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment