summaryrefslogtreecommitdiff
path: root/lib/internal
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2016-02-10 15:14:36 -0800
committerAlexander Early <alexander.early@gmail.com>2016-02-10 15:14:36 -0800
commitb001e4a9c3e51bf277d69b54e5776caa7099a455 (patch)
tree6c5a9b18d54393b0730d742c5ce469c1f44342a0 /lib/internal
parent8a7f8642467222519cc722c3c634036fbc9d9068 (diff)
downloadasync-b001e4a9c3e51bf277d69b54e5776caa7099a455.tar.gz
handle moved lodash internal methods
Diffstat (limited to 'lib/internal')
-rw-r--r--lib/internal/consoleFunc.js2
-rw-r--r--lib/internal/filter.js4
-rw-r--r--lib/internal/queue.js6
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/internal/consoleFunc.js b/lib/internal/consoleFunc.js
index 1ff702b..fd8130d 100644
--- a/lib/internal/consoleFunc.js
+++ b/lib/internal/consoleFunc.js
@@ -1,6 +1,6 @@
'use strict';
-import arrayEach from 'lodash/internal/arrayEach';
+import arrayEach from 'lodash/_arrayEach';
import rest from 'lodash/rest';
export default function consoleFunc(name) {
diff --git a/lib/internal/filter.js b/lib/internal/filter.js
index 9f2ba87..4d5ceb8 100644
--- a/lib/internal/filter.js
+++ b/lib/internal/filter.js
@@ -1,7 +1,7 @@
'use strict';
-import arrayMap from 'lodash/internal/arrayMap';
-import property from 'lodash/internal/baseProperty';
+import arrayMap from 'lodash/_arrayMap';
+import property from 'lodash/_baseProperty';
export default function _filter(eachfn, arr, iterator, callback) {
var results = [];
diff --git a/lib/internal/queue.js b/lib/internal/queue.js
index f6e665b..87c99f8 100644
--- a/lib/internal/queue.js
+++ b/lib/internal/queue.js
@@ -1,10 +1,10 @@
'use strict';
-import arrayEach from 'lodash/internal/arrayEach';
-import arrayMap from 'lodash/internal/arrayMap';
+import arrayEach from 'lodash/_arrayEach';
+import arrayMap from 'lodash/_arrayMap';
import isArray from 'lodash/isArray';
import noop from 'lodash/noop';
-import property from 'lodash/internal/baseProperty';
+import property from 'lodash/_baseProperty';
import onlyOnce from './onlyOnce';
import setImmediate from './setImmediate';