Skip to content

Instantly share code, notes, and snippets.

@theosp
Created July 25, 2014 06:19
Show Gist options
  • Save theosp/0dee9e8247364d10996f to your computer and use it in GitHub Desktop.
Save theosp/0dee9e8247364d10996f to your computer and use it in GitHub Desktop.
removeTrailingUndefs
removeTrailingUndefs = (arr) ->
while (not _.isEmpty arr) and (_.isUndefined _.last arr)
arr.pop()
return arr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment