diff --git a/snippets/over.md b/snippets/over.md index 859176db8..ce3f133f8 100644 --- a/snippets/over.md +++ b/snippets/over.md @@ -1,6 +1,6 @@ --- title: over -tags: adapter,function,intermediate +tags: function,intermediate --- Creates a function that invokes each provided function with the arguments it receives and returns the results. @@ -14,4 +14,4 @@ const over = (...fns) => (...args) => fns.map(fn => fn.apply(null, args)); ```js const minMax = over(Math.min, Math.max); minMax(1, 2, 3, 4, 5); // [1,5] -``` \ No newline at end of file +```