Created
September 23, 2013 19:50
-
-
Save mattneary/6675950 to your computer and use it in GitHub Desktop.
Fix fix
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
// lemonad source... | |
L.fix1 = L.curry(L.curry)(1); | |
L.fix2 = L.curry(L.curry)(2); | |
L.fix3 = L.curry(L.curry)(3); | |
L.fix4 = L.curry(L.curry)(4); | |
// function we could provide: | |
L.fix = L.curry(L.curry); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment