Created
April 10, 2017 04:53
-
-
Save disnet/f5f403d545546f31f76aae8756ab80a1 to your computer and use it in GitHub Desktop.
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
operator >>= left 1 = (left, right) => { | |
return #`${left}.then(${right})`; | |
} | |
fetch('/foo.json') >>= resp => { return resp.json() } | |
>>= json => { return processJson(json) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment