Skip to content

Instantly share code, notes, and snippets.

@disnet
Created April 10, 2017 04:53
Show Gist options
  • Save disnet/f5f403d545546f31f76aae8756ab80a1 to your computer and use it in GitHub Desktop.
Save disnet/f5f403d545546f31f76aae8756ab80a1 to your computer and use it in GitHub Desktop.
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