Guest User

Untitled

a guest
Oct 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. _.mixin(
  2. isBlank: (obj) ->
  3. if _.isString(obj)
  4. !obj.match(/\S/)?
  5. else if _.isBoolean(obj)
  6. if obj then false else true
  7. else if _.isNumber(obj)
  8. false
  9. else
  10. # fall through to `isEmpty` which will
  11. # handle objects, arrays, null & undefined
  12. _.isEmpty(obj)
  13. )
Add Comment
Please, Sign In to add comment