From 1b2a9324ec360e02888246530a7a1a5bd14ff603 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 13 Jan 2020 10:05:49 +0200 Subject: [PATCH] Update overArgs.md --- snippets/overArgs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/overArgs.md b/snippets/overArgs.md index f33dab59d..94233b3a6 100644 --- a/snippets/overArgs.md +++ b/snippets/overArgs.md @@ -1,6 +1,6 @@ --- title: overArgs -tags: adapter,function,intermediate +tags: function,intermediate --- Creates a function that invokes the provided function with its arguments transformed. @@ -16,4 +16,4 @@ const square = n => n * n; const double = n => n * 2; const fn = overArgs((x, y) => [x, y], [square, double]); fn(9, 3); // [81, 6] -``` \ No newline at end of file +```