summaryrefslogtreecommitdiff
path: root/lib/internal/consoleFunc.js
diff options
context:
space:
mode:
authorAlex Early <alexander.early@gmail.com>2018-06-02 17:23:48 -0700
committerGitHub <noreply@github.com>2018-06-02 17:23:48 -0700
commit0d4f73625b67ee8f670eb3ee727cb85f980cabd5 (patch)
treecbe45a59529b779d41d1a70b6067fb5d657154dd /lib/internal/consoleFunc.js
parentca85923d491812bd0ff4f514ee28de8732d0ea90 (diff)
parentec8d30c9332256907fdfc976576b7927c5fcc61d (diff)
downloadasync-0d4f73625b67ee8f670eb3ee727cb85f980cabd5.tar.gz
Merge pull request #1528 from bfred-it/drop-lodash
Drop lodash
Diffstat (limited to 'lib/internal/consoleFunc.js')
-rw-r--r--lib/internal/consoleFunc.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/internal/consoleFunc.js b/lib/internal/consoleFunc.js
index eb2e886..c977647 100644
--- a/lib/internal/consoleFunc.js
+++ b/lib/internal/consoleFunc.js
@@ -1,4 +1,3 @@
-import arrayEach from 'lodash/_arrayEach';
import slice from './slice';
import wrapAsync from './wrapAsync';
@@ -13,7 +12,7 @@ export default function consoleFunc(name) {
console.error(err);
}
} else if (console[name]) {
- arrayEach(args, function (x) {
+ args.forEach(function (x) {
console[name](x);
});
}