Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created July 10, 2019 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/aa065ad8e00d210f07678b238f42304e to your computer and use it in GitHub Desktop.
Save gdyrrahitis/aa065ad8e00d210f07678b238f42304e to your computer and use it in GitHub Desktop.
const phrase = 'Welcome';
const observable = of(phrase);
observable.pipe(
append(' to'),
append(' Functional Programming'),
append(' I hope you like'),
append(' pipelining!'),
removeTheLetter('i'),
makeLetterUpperCase('o'),
makeLetterUpperCase('a'),
makeLetterUpperCase('e'),
removeWordsWithLessThanFourLetters // partial function application
).subscribe(x => console.log(x));
// prints: WElcOmE FunctOnAl PrOgrAmmng ppElnng!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment