From f2342ff9ed63d31c502b8fdd6f4670213767e319 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 13 Jan 2020 10:04:58 +0200 Subject: [PATCH] Update pipeAsyncFunctions.md --- snippets/pipeAsyncFunctions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/pipeAsyncFunctions.md b/snippets/pipeAsyncFunctions.md index 4904b600a..3044ba7ea 100644 --- a/snippets/pipeAsyncFunctions.md +++ b/snippets/pipeAsyncFunctions.md @@ -1,6 +1,6 @@ --- title: pipeAsyncFunctions -tags: adapter,function,promise,intermediate +tags: function,promise,intermediate --- Performs left-to-right function composition for asynchronous functions. @@ -23,4 +23,4 @@ const sum = pipeAsyncFunctions( (async () => { console.log(await sum(5)); // 15 (after one second) })(); -``` \ No newline at end of file +```