From c8f50e6e44e34d551575c0fefa7469f978389829 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 13 Jan 2020 10:06:13 +0200 Subject: [PATCH] Update pipeFunctions.md --- snippets/pipeFunctions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/pipeFunctions.md b/snippets/pipeFunctions.md index 5de1d9d61..2b14b6a85 100644 --- a/snippets/pipeFunctions.md +++ b/snippets/pipeFunctions.md @@ -1,6 +1,6 @@ --- title: pipeFunctions -tags: adapter,function,intermediate +tags: function,intermediate --- Performs left-to-right function composition. @@ -17,4 +17,4 @@ const add5 = x => x + 5; const multiply = (x, y) => x * y; const multiplyAndAdd5 = pipeFunctions(multiply, add5); multiplyAndAdd5(5, 2); // 15 -``` \ No newline at end of file +```