diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-10-24 21:40:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-24 21:40:38 +0800 |
commit | 641d3b75eadf8f3330d60ca26b7edc06a871219c (patch) | |
tree | a2fa218dfd160986d39a2281a6748c325ebba2d1 /src/utils/lodash.ts | |
parent | fab2fa9adfe95db0b6f203efb926d52b6c9e14d4 (diff) | |
download | dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar.gz dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar.bz2 dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar.lz dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar.xz dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.tar.zst dexon-sol-tools-641d3b75eadf8f3330d60ca26b7edc06a871219c.zip |
Revert "Reduce final bundle size by 11% (82kB)"
Diffstat (limited to 'src/utils/lodash.ts')
-rw-r--r-- | src/utils/lodash.ts | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/utils/lodash.ts b/src/utils/lodash.ts deleted file mode 100644 index 67e4e5a9a..000000000 --- a/src/utils/lodash.ts +++ /dev/null @@ -1,55 +0,0 @@ -import assign from 'lodash-es/assign'; -import map from 'lodash-es/map'; -import values from 'lodash-es/values'; -import isUndefined from 'lodash-es/isUndefined'; -import isNull from 'lodash-es/isNull'; -import includes from 'lodash-es/includes'; -import each from 'lodash-es/each'; -import forEach from 'lodash-es/forEach'; -import filter from 'lodash-es/filter'; -import startsWith from 'lodash-es/startsWith'; -import padStart from 'lodash-es/padStart'; -import find from 'lodash-es/find'; -import zipWith from 'lodash-es/zipWith'; -import every from 'lodash-es/every'; -import isEmpty from 'lodash-es/isEmpty'; -import unzip from 'lodash-es/unzip'; -import pull from 'lodash-es/pull'; -import keys from 'lodash-es/keys'; -import uniq from 'lodash-es/uniq'; -import isArray from 'lodash-es/isArray'; -import isObject from 'lodash-es/isObject'; -import isString from 'lodash-es/isString'; -import isFinite from 'lodash-es/isFinite'; -import isNumber from 'lodash-es/isNumber'; -import isBoolean from 'lodash-es/isBoolean'; -import isFunction from 'lodash-es/isFunction'; - -export const _ = { - assign, - map, - values, - isUndefined, - isNull, - includes, - each, - forEach, - filter, - startsWith, - padStart, - find, - zipWith, - every, - isEmpty, - unzip, - pull, - keys, - uniq, - isArray, - isObject, - isString, - isFinite, - isNumber, - isBoolean, - isFunction, -}; |