Skip to content

Instantly share code, notes, and snippets.

@Pengeszikra
Created July 29, 2019 17:39
Show Gist options
  • Save Pengeszikra/860ab3c11ef10d690f3f031dc5c3cb7f to your computer and use it in GitHub Desktop.
Save Pengeszikra/860ab3c11ef10d690f3f031dc5c3cb7f to your computer and use it in GitHub Desktop.
custom railway oriented programming core in javascript
export const railway = (semaphore = () => false) => (begin, ...calls) =>
calls.reduce(
(value, call) => semaphore(value) ? value : call(value)
, begin)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment