diff options
author | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-07-03 18:46:11 -0400 |
---|---|---|
committer | Graeme Yeates <yeatesgraeme@gmail.com> | 2016-07-03 18:46:11 -0400 |
commit | a823d56feb09f52bf29ef91cfafa0e45af3b2a74 (patch) | |
tree | fd0a3fc14735bb261fada989ca764d78462126aa /lib/auto.js | |
parent | 5d66b2abcf3e68da1f8d397d44a246f7c562a3da (diff) | |
download | async-a823d56feb09f52bf29ef91cfafa0e45af3b2a74.tar.gz |
Avoid including lodash iteratee in builds (saves 60kb :feelsgood:)lodash-use
Diffstat (limited to 'lib/auto.js')
-rw-r--r-- | lib/auto.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/auto.js b/lib/auto.js index af78516..d200c3a 100644 --- a/lib/auto.js +++ b/lib/auto.js @@ -1,5 +1,5 @@ import arrayEach from 'lodash/_arrayEach'; -import forOwn from 'lodash/forOwn'; +import forOwn from 'lodash/_baseForOwn'; import indexOf from 'lodash/_baseIndexOf'; import isArray from 'lodash/isArray'; import okeys from 'lodash/keys'; |