summaryrefslogtreecommitdiff
path: root/lib/internal/withoutIndex.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/withoutIndex.js')
-rw-r--r--lib/internal/withoutIndex.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/internal/withoutIndex.js b/lib/internal/withoutIndex.js
index 2d70dd4..4de0f31 100644
--- a/lib/internal/withoutIndex.js
+++ b/lib/internal/withoutIndex.js
@@ -1,5 +1,3 @@
export default function _withoutIndex(iteratee) {
- return function (value, index, callback) {
- return iteratee(value, callback);
- };
+ return (value, index, callback) => iteratee(value, callback);
}