Created
October 4, 2013 13:35
-
-
Save taoeffect/6826028 to your computer and use it in GitHub Desktop.
Equivalent CoffeeScript: (title, [options]..., cb) =>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var _this = this, | |
| __slice = [].slice; | |
| (function() { | |
| var cb, options, title, _arg, _i; | |
| title = arguments[0], _arg = 3 <= arguments.length ? __slice.call(arguments, 1, _i = arguments.length - 1) : (_i = 1, []), cb = arguments[_i++]; | |
| options = _arg[0]; | |
| }); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From: https://github.com/taoeffect/motionwiki/blob/812536bb8820c6daab67f673e5d1acbf53e20be8/src/motionwiki/app/wiki/api.coffee#L14