Skip to content

Instantly share code, notes, and snippets.

@akonwi
Created October 10, 2017 03:57
Show Gist options
  • Save akonwi/56a2886a69bd0fcfeb3a12df5a575806 to your computer and use it in GitHub Desktop.
Save akonwi/56a2886a69bd0fcfeb3a12df5a575806 to your computer and use it in GitHub Desktop.
module.exports = (func) ->
xs = []
curry = (x) ->
if x
xs.push x
curry
else
xs = [0] if xs.length is 0
func.apply null, xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment