Skip to content

Instantly share code, notes, and snippets.

@tmtk75
Created October 10, 2012 02:18
Show Gist options
  • Save tmtk75/3862771 to your computer and use it in GitHub Desktop.
Save tmtk75/3862771 to your computer and use it in GitHub Desktop.
mkdeferred = (wrapped, func)->
->
dfd = $.Deferred()
args = _.flatten [wrapped, dfd, [].slice.apply arguments]
func.apply null, args
dfd.promise()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment