From 59124c4cfee042a53583deb3f4d7e56b4fbc0cd8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 9 Jan 2017 16:07:04 -0800 Subject: [PATCH] Remove category modules. --- array.default.js | 81 ------------------------------------------- array.js | 66 ----------------------------------- collection.default.js | 37 -------------------- collection.js | 29 ---------------- date.default.js | 5 --- date.js | 2 -- function.default.js | 31 ----------------- function.js | 24 ------------- lang.default.js | 71 ------------------------------------- lang.js | 57 ------------------------------ math.default.js | 21 ----------- math.js | 16 --------- number.default.js | 7 ---- number.js | 4 --- object.default.js | 60 -------------------------------- object.js | 48 ------------------------- string.default.js | 41 ---------------------- string.js | 32 ----------------- util.default.js | 42 ---------------------- util.js | 33 ------------------ 20 files changed, 707 deletions(-) delete mode 100644 array.default.js delete mode 100644 array.js delete mode 100644 collection.default.js delete mode 100644 collection.js delete mode 100644 date.default.js delete mode 100644 date.js delete mode 100644 function.default.js delete mode 100644 function.js delete mode 100644 lang.default.js delete mode 100644 lang.js delete mode 100644 math.default.js delete mode 100644 math.js delete mode 100644 number.default.js delete mode 100644 number.js delete mode 100644 object.default.js delete mode 100644 object.js delete mode 100644 string.default.js delete mode 100644 string.js delete mode 100644 util.default.js delete mode 100644 util.js diff --git a/array.default.js b/array.default.js deleted file mode 100644 index 13c079757..000000000 --- a/array.default.js +++ /dev/null @@ -1,81 +0,0 @@ -import chunk from './chunk.js'; -import compact from './compact.js'; -import concat from './concat.js'; -import difference from './difference.js'; -import differenceBy from './differenceBy.js'; -import differenceWith from './differenceWith.js'; -import drop from './drop.js'; -import dropRight from './dropRight.js'; -import dropRightWhile from './dropRightWhile.js'; -import dropWhile from './dropWhile.js'; -import fill from './fill.js'; -import findIndex from './findIndex.js'; -import findLastIndex from './findLastIndex.js'; -import first from './first.js'; -import flatten from './flatten.js'; -import flattenDeep from './flattenDeep.js'; -import flattenDepth from './flattenDepth.js'; -import fromPairs from './fromPairs.js'; -import head from './head.js'; -import indexOf from './indexOf.js'; -import initial from './initial.js'; -import intersection from './intersection.js'; -import intersectionBy from './intersectionBy.js'; -import intersectionWith from './intersectionWith.js'; -import join from './join.js'; -import last from './last.js'; -import lastIndexOf from './lastIndexOf.js'; -import nth from './nth.js'; -import pull from './pull.js'; -import pullAll from './pullAll.js'; -import pullAllBy from './pullAllBy.js'; -import pullAllWith from './pullAllWith.js'; -import pullAt from './pullAt.js'; -import remove from './remove.js'; -import reverse from './reverse.js'; -import slice from './slice.js'; -import sortedIndex from './sortedIndex.js'; -import sortedIndexBy from './sortedIndexBy.js'; -import sortedIndexOf from './sortedIndexOf.js'; -import sortedLastIndex from './sortedLastIndex.js'; -import sortedLastIndexBy from './sortedLastIndexBy.js'; -import sortedLastIndexOf from './sortedLastIndexOf.js'; -import sortedUniq from './sortedUniq.js'; -import sortedUniqBy from './sortedUniqBy.js'; -import tail from './tail.js'; -import take from './take.js'; -import takeRight from './takeRight.js'; -import takeRightWhile from './takeRightWhile.js'; -import takeWhile from './takeWhile.js'; -import union from './union.js'; -import unionBy from './unionBy.js'; -import unionWith from './unionWith.js'; -import uniq from './uniq.js'; -import uniqBy from './uniqBy.js'; -import uniqWith from './uniqWith.js'; -import unzip from './unzip.js'; -import unzipWith from './unzipWith.js'; -import without from './without.js'; -import xor from './xor.js'; -import xorBy from './xorBy.js'; -import xorWith from './xorWith.js'; -import zip from './zip.js'; -import zipObject from './zipObject.js'; -import zipObjectDeep from './zipObjectDeep.js'; -import zipWith from './zipWith.js'; - -export default { - chunk, compact, concat, difference, differenceBy, - differenceWith, drop, dropRight, dropRightWhile, dropWhile, - fill, findIndex, findLastIndex, first, flatten, - flattenDeep, flattenDepth, fromPairs, head, indexOf, - initial, intersection, intersectionBy, intersectionWith, join, - last, lastIndexOf, nth, pull, pullAll, - pullAllBy, pullAllWith, pullAt, remove, reverse, - slice, sortedIndex, sortedIndexBy, sortedIndexOf, sortedLastIndex, - sortedLastIndexBy, sortedLastIndexOf, sortedUniq, sortedUniqBy, tail, - take, takeRight, takeRightWhile, takeWhile, union, - unionBy, unionWith, uniq, uniqBy, uniqWith, - unzip, unzipWith, without, xor, xorBy, - xorWith, zip, zipObject, zipObjectDeep, zipWith -}; diff --git a/array.js b/array.js deleted file mode 100644 index b579b5c98..000000000 --- a/array.js +++ /dev/null @@ -1,66 +0,0 @@ -export { default as chunk } from './chunk.js'; -export { default as compact } from './compact.js'; -export { default as concat } from './concat.js'; -export { default as difference } from './difference.js'; -export { default as differenceBy } from './differenceBy.js'; -export { default as differenceWith } from './differenceWith.js'; -export { default as drop } from './drop.js'; -export { default as dropRight } from './dropRight.js'; -export { default as dropRightWhile } from './dropRightWhile.js'; -export { default as dropWhile } from './dropWhile.js'; -export { default as fill } from './fill.js'; -export { default as findIndex } from './findIndex.js'; -export { default as findLastIndex } from './findLastIndex.js'; -export { default as first } from './first.js'; -export { default as flatten } from './flatten.js'; -export { default as flattenDeep } from './flattenDeep.js'; -export { default as flattenDepth } from './flattenDepth.js'; -export { default as fromPairs } from './fromPairs.js'; -export { default as head } from './head.js'; -export { default as indexOf } from './indexOf.js'; -export { default as initial } from './initial.js'; -export { default as intersection } from './intersection.js'; -export { default as intersectionBy } from './intersectionBy.js'; -export { default as intersectionWith } from './intersectionWith.js'; -export { default as join } from './join.js'; -export { default as last } from './last.js'; -export { default as lastIndexOf } from './lastIndexOf.js'; -export { default as nth } from './nth.js'; -export { default as pull } from './pull.js'; -export { default as pullAll } from './pullAll.js'; -export { default as pullAllBy } from './pullAllBy.js'; -export { default as pullAllWith } from './pullAllWith.js'; -export { default as pullAt } from './pullAt.js'; -export { default as remove } from './remove.js'; -export { default as reverse } from './reverse.js'; -export { default as slice } from './slice.js'; -export { default as sortedIndex } from './sortedIndex.js'; -export { default as sortedIndexBy } from './sortedIndexBy.js'; -export { default as sortedIndexOf } from './sortedIndexOf.js'; -export { default as sortedLastIndex } from './sortedLastIndex.js'; -export { default as sortedLastIndexBy } from './sortedLastIndexBy.js'; -export { default as sortedLastIndexOf } from './sortedLastIndexOf.js'; -export { default as sortedUniq } from './sortedUniq.js'; -export { default as sortedUniqBy } from './sortedUniqBy.js'; -export { default as tail } from './tail.js'; -export { default as take } from './take.js'; -export { default as takeRight } from './takeRight.js'; -export { default as takeRightWhile } from './takeRightWhile.js'; -export { default as takeWhile } from './takeWhile.js'; -export { default as union } from './union.js'; -export { default as unionBy } from './unionBy.js'; -export { default as unionWith } from './unionWith.js'; -export { default as uniq } from './uniq.js'; -export { default as uniqBy } from './uniqBy.js'; -export { default as uniqWith } from './uniqWith.js'; -export { default as unzip } from './unzip.js'; -export { default as unzipWith } from './unzipWith.js'; -export { default as without } from './without.js'; -export { default as xor } from './xor.js'; -export { default as xorBy } from './xorBy.js'; -export { default as xorWith } from './xorWith.js'; -export { default as zip } from './zip.js'; -export { default as zipObject } from './zipObject.js'; -export { default as zipObjectDeep } from './zipObjectDeep.js'; -export { default as zipWith } from './zipWith.js'; -export { default } from './array.default.js'; diff --git a/collection.default.js b/collection.default.js deleted file mode 100644 index 2f262bfd7..000000000 --- a/collection.default.js +++ /dev/null @@ -1,37 +0,0 @@ -import countBy from './countBy.js'; -import each from './each.js'; -import eachRight from './eachRight.js'; -import every from './every.js'; -import filter from './filter.js'; -import find from './find.js'; -import findLast from './findLast.js'; -import flatMap from './flatMap.js'; -import flatMapDeep from './flatMapDeep.js'; -import flatMapDepth from './flatMapDepth.js'; -import forEach from './forEach.js'; -import forEachRight from './forEachRight.js'; -import groupBy from './groupBy.js'; -import includes from './includes.js'; -import invokeMap from './invokeMap.js'; -import keyBy from './keyBy.js'; -import map from './map.js'; -import orderBy from './orderBy.js'; -import partition from './partition.js'; -import reduce from './reduce.js'; -import reduceRight from './reduceRight.js'; -import reject from './reject.js'; -import sample from './sample.js'; -import sampleSize from './sampleSize.js'; -import shuffle from './shuffle.js'; -import size from './size.js'; -import some from './some.js'; -import sortBy from './sortBy.js'; - -export default { - countBy, each, eachRight, every, filter, - find, findLast, flatMap, flatMapDeep, flatMapDepth, - forEach, forEachRight, groupBy, includes, invokeMap, - keyBy, map, orderBy, partition, reduce, - reduceRight, reject, sample, sampleSize, shuffle, - size, some, sortBy -}; diff --git a/collection.js b/collection.js deleted file mode 100644 index 2c9fab977..000000000 --- a/collection.js +++ /dev/null @@ -1,29 +0,0 @@ -export { default as countBy } from './countBy.js'; -export { default as each } from './each.js'; -export { default as eachRight } from './eachRight.js'; -export { default as every } from './every.js'; -export { default as filter } from './filter.js'; -export { default as find } from './find.js'; -export { default as findLast } from './findLast.js'; -export { default as flatMap } from './flatMap.js'; -export { default as flatMapDeep } from './flatMapDeep.js'; -export { default as flatMapDepth } from './flatMapDepth.js'; -export { default as forEach } from './forEach.js'; -export { default as forEachRight } from './forEachRight.js'; -export { default as groupBy } from './groupBy.js'; -export { default as includes } from './includes.js'; -export { default as invokeMap } from './invokeMap.js'; -export { default as keyBy } from './keyBy.js'; -export { default as map } from './map.js'; -export { default as orderBy } from './orderBy.js'; -export { default as partition } from './partition.js'; -export { default as reduce } from './reduce.js'; -export { default as reduceRight } from './reduceRight.js'; -export { default as reject } from './reject.js'; -export { default as sample } from './sample.js'; -export { default as sampleSize } from './sampleSize.js'; -export { default as shuffle } from './shuffle.js'; -export { default as size } from './size.js'; -export { default as some } from './some.js'; -export { default as sortBy } from './sortBy.js'; -export { default } from './collection.default.js'; diff --git a/date.default.js b/date.default.js deleted file mode 100644 index 9f1ee4947..000000000 --- a/date.default.js +++ /dev/null @@ -1,5 +0,0 @@ -import now from './now.js'; - -export default { - now -}; diff --git a/date.js b/date.js deleted file mode 100644 index bea18b62e..000000000 --- a/date.js +++ /dev/null @@ -1,2 +0,0 @@ -export { default as now } from './now.js'; -export { default } from './date.default.js'; diff --git a/function.default.js b/function.default.js deleted file mode 100644 index a92f4dfda..000000000 --- a/function.default.js +++ /dev/null @@ -1,31 +0,0 @@ -import after from './after.js'; -import ary from './ary.js'; -import before from './before.js'; -import bind from './bind.js'; -import bindKey from './bindKey.js'; -import curry from './curry.js'; -import curryRight from './curryRight.js'; -import debounce from './debounce.js'; -import defer from './defer.js'; -import delay from './delay.js'; -import flip from './flip.js'; -import memoize from './memoize.js'; -import negate from './negate.js'; -import once from './once.js'; -import overArgs from './overArgs.js'; -import partial from './partial.js'; -import partialRight from './partialRight.js'; -import rearg from './rearg.js'; -import rest from './rest.js'; -import spread from './spread.js'; -import throttle from './throttle.js'; -import unary from './unary.js'; -import wrap from './wrap.js'; - -export default { - after, ary, before, bind, bindKey, - curry, curryRight, debounce, defer, delay, - flip, memoize, negate, once, overArgs, - partial, partialRight, rearg, rest, spread, - throttle, unary, wrap -}; diff --git a/function.js b/function.js deleted file mode 100644 index 7c1dddfba..000000000 --- a/function.js +++ /dev/null @@ -1,24 +0,0 @@ -export { default as after } from './after.js'; -export { default as ary } from './ary.js'; -export { default as before } from './before.js'; -export { default as bind } from './bind.js'; -export { default as bindKey } from './bindKey.js'; -export { default as curry } from './curry.js'; -export { default as curryRight } from './curryRight.js'; -export { default as debounce } from './debounce.js'; -export { default as defer } from './defer.js'; -export { default as delay } from './delay.js'; -export { default as flip } from './flip.js'; -export { default as memoize } from './memoize.js'; -export { default as negate } from './negate.js'; -export { default as once } from './once.js'; -export { default as overArgs } from './overArgs.js'; -export { default as partial } from './partial.js'; -export { default as partialRight } from './partialRight.js'; -export { default as rearg } from './rearg.js'; -export { default as rest } from './rest.js'; -export { default as spread } from './spread.js'; -export { default as throttle } from './throttle.js'; -export { default as unary } from './unary.js'; -export { default as wrap } from './wrap.js'; -export { default } from './function.default.js'; diff --git a/lang.default.js b/lang.default.js deleted file mode 100644 index 8fd434d12..000000000 --- a/lang.default.js +++ /dev/null @@ -1,71 +0,0 @@ -import castArray from './castArray.js'; -import clone from './clone.js'; -import cloneDeep from './cloneDeep.js'; -import cloneDeepWith from './cloneDeepWith.js'; -import cloneWith from './cloneWith.js'; -import conformsTo from './conformsTo.js'; -import eq from './eq.js'; -import gt from './gt.js'; -import gte from './gte.js'; -import isArguments from './isArguments.js'; -import isArray from './isArray.js'; -import isArrayBuffer from './isArrayBuffer.js'; -import isArrayLike from './isArrayLike.js'; -import isArrayLikeObject from './isArrayLikeObject.js'; -import isBoolean from './isBoolean.js'; -import isBuffer from './isBuffer.js'; -import isDate from './isDate.js'; -import isElement from './isElement.js'; -import isEmpty from './isEmpty.js'; -import isEqual from './isEqual.js'; -import isEqualWith from './isEqualWith.js'; -import isError from './isError.js'; -import isFinite from './isFinite.js'; -import isFunction from './isFunction.js'; -import isInteger from './isInteger.js'; -import isLength from './isLength.js'; -import isMap from './isMap.js'; -import isMatch from './isMatch.js'; -import isMatchWith from './isMatchWith.js'; -import isNaN from './isNaN.js'; -import isNative from './isNative.js'; -import isNil from './isNil.js'; -import isNull from './isNull.js'; -import isNumber from './isNumber.js'; -import isObject from './isObject.js'; -import isObjectLike from './isObjectLike.js'; -import isPlainObject from './isPlainObject.js'; -import isRegExp from './isRegExp.js'; -import isSafeInteger from './isSafeInteger.js'; -import isSet from './isSet.js'; -import isString from './isString.js'; -import isSymbol from './isSymbol.js'; -import isTypedArray from './isTypedArray.js'; -import isUndefined from './isUndefined.js'; -import isWeakMap from './isWeakMap.js'; -import isWeakSet from './isWeakSet.js'; -import lt from './lt.js'; -import lte from './lte.js'; -import toArray from './toArray.js'; -import toFinite from './toFinite.js'; -import toInteger from './toInteger.js'; -import toLength from './toLength.js'; -import toNumber from './toNumber.js'; -import toPlainObject from './toPlainObject.js'; -import toSafeInteger from './toSafeInteger.js'; -import toString from './toString.js'; - -export default { - castArray, clone, cloneDeep, cloneDeepWith, cloneWith, - conformsTo, eq, gt, gte, isArguments, - isArray, isArrayBuffer, isArrayLike, isArrayLikeObject, isBoolean, - isBuffer, isDate, isElement, isEmpty, isEqual, - isEqualWith, isError, isFinite, isFunction, isInteger, - isLength, isMap, isMatch, isMatchWith, isNaN, - isNative, isNil, isNull, isNumber, isObject, - isObjectLike, isPlainObject, isRegExp, isSafeInteger, isSet, - isString, isSymbol, isTypedArray, isUndefined, isWeakMap, - isWeakSet, lt, lte, toArray, toFinite, - toInteger, toLength, toNumber, toPlainObject, toSafeInteger, - toString -}; diff --git a/lang.js b/lang.js deleted file mode 100644 index eb837d9bd..000000000 --- a/lang.js +++ /dev/null @@ -1,57 +0,0 @@ -export { default as castArray } from './castArray.js'; -export { default as clone } from './clone.js'; -export { default as cloneDeep } from './cloneDeep.js'; -export { default as cloneDeepWith } from './cloneDeepWith.js'; -export { default as cloneWith } from './cloneWith.js'; -export { default as conformsTo } from './conformsTo.js'; -export { default as eq } from './eq.js'; -export { default as gt } from './gt.js'; -export { default as gte } from './gte.js'; -export { default as isArguments } from './isArguments.js'; -export { default as isArray } from './isArray.js'; -export { default as isArrayBuffer } from './isArrayBuffer.js'; -export { default as isArrayLike } from './isArrayLike.js'; -export { default as isArrayLikeObject } from './isArrayLikeObject.js'; -export { default as isBoolean } from './isBoolean.js'; -export { default as isBuffer } from './isBuffer.js'; -export { default as isDate } from './isDate.js'; -export { default as isElement } from './isElement.js'; -export { default as isEmpty } from './isEmpty.js'; -export { default as isEqual } from './isEqual.js'; -export { default as isEqualWith } from './isEqualWith.js'; -export { default as isError } from './isError.js'; -export { default as isFinite } from './isFinite.js'; -export { default as isFunction } from './isFunction.js'; -export { default as isInteger } from './isInteger.js'; -export { default as isLength } from './isLength.js'; -export { default as isMap } from './isMap.js'; -export { default as isMatch } from './isMatch.js'; -export { default as isMatchWith } from './isMatchWith.js'; -export { default as isNaN } from './isNaN.js'; -export { default as isNative } from './isNative.js'; -export { default as isNil } from './isNil.js'; -export { default as isNull } from './isNull.js'; -export { default as isNumber } from './isNumber.js'; -export { default as isObject } from './isObject.js'; -export { default as isObjectLike } from './isObjectLike.js'; -export { default as isPlainObject } from './isPlainObject.js'; -export { default as isRegExp } from './isRegExp.js'; -export { default as isSafeInteger } from './isSafeInteger.js'; -export { default as isSet } from './isSet.js'; -export { default as isString } from './isString.js'; -export { default as isSymbol } from './isSymbol.js'; -export { default as isTypedArray } from './isTypedArray.js'; -export { default as isUndefined } from './isUndefined.js'; -export { default as isWeakMap } from './isWeakMap.js'; -export { default as isWeakSet } from './isWeakSet.js'; -export { default as lt } from './lt.js'; -export { default as lte } from './lte.js'; -export { default as toArray } from './toArray.js'; -export { default as toFinite } from './toFinite.js'; -export { default as toInteger } from './toInteger.js'; -export { default as toLength } from './toLength.js'; -export { default as toNumber } from './toNumber.js'; -export { default as toPlainObject } from './toPlainObject.js'; -export { default as toSafeInteger } from './toSafeInteger.js'; -export { default as toString } from './toString.js'; -export { default } from './lang.default.js'; diff --git a/math.default.js b/math.default.js deleted file mode 100644 index 3705ee5a7..000000000 --- a/math.default.js +++ /dev/null @@ -1,21 +0,0 @@ -import add from './add.js'; -import ceil from './ceil.js'; -import divide from './divide.js'; -import floor from './floor.js'; -import max from './max.js'; -import maxBy from './maxBy.js'; -import mean from './mean.js'; -import meanBy from './meanBy.js'; -import min from './min.js'; -import minBy from './minBy.js'; -import multiply from './multiply.js'; -import round from './round.js'; -import subtract from './subtract.js'; -import sum from './sum.js'; -import sumBy from './sumBy.js'; - -export default { - add, ceil, divide, floor, max, - maxBy, mean, meanBy, min, minBy, - multiply, round, subtract, sum, sumBy -}; diff --git a/math.js b/math.js deleted file mode 100644 index 8be0338fa..000000000 --- a/math.js +++ /dev/null @@ -1,16 +0,0 @@ -export { default as add } from './add.js'; -export { default as ceil } from './ceil.js'; -export { default as divide } from './divide.js'; -export { default as floor } from './floor.js'; -export { default as max } from './max.js'; -export { default as maxBy } from './maxBy.js'; -export { default as mean } from './mean.js'; -export { default as meanBy } from './meanBy.js'; -export { default as min } from './min.js'; -export { default as minBy } from './minBy.js'; -export { default as multiply } from './multiply.js'; -export { default as round } from './round.js'; -export { default as subtract } from './subtract.js'; -export { default as sum } from './sum.js'; -export { default as sumBy } from './sumBy.js'; -export { default } from './math.default.js'; diff --git a/number.default.js b/number.default.js deleted file mode 100644 index 5eef33776..000000000 --- a/number.default.js +++ /dev/null @@ -1,7 +0,0 @@ -import clamp from './clamp.js'; -import inRange from './inRange.js'; -import random from './random.js'; - -export default { - clamp, inRange, random -}; diff --git a/number.js b/number.js deleted file mode 100644 index 2ff09e35f..000000000 --- a/number.js +++ /dev/null @@ -1,4 +0,0 @@ -export { default as clamp } from './clamp.js'; -export { default as inRange } from './inRange.js'; -export { default as random } from './random.js'; -export { default } from './number.default.js'; diff --git a/object.default.js b/object.default.js deleted file mode 100644 index 931ac0e39..000000000 --- a/object.default.js +++ /dev/null @@ -1,60 +0,0 @@ -import assign from './assign.js'; -import assignIn from './assignIn.js'; -import assignInWith from './assignInWith.js'; -import assignWith from './assignWith.js'; -import at from './at.js'; -import create from './create.js'; -import defaults from './defaults.js'; -import defaultsDeep from './defaultsDeep.js'; -import entries from './entries.js'; -import entriesIn from './entriesIn.js'; -import extend from './extend.js'; -import extendWith from './extendWith.js'; -import findKey from './findKey.js'; -import findLastKey from './findLastKey.js'; -import forIn from './forIn.js'; -import forInRight from './forInRight.js'; -import forOwn from './forOwn.js'; -import forOwnRight from './forOwnRight.js'; -import functions from './functions.js'; -import functionsIn from './functionsIn.js'; -import get from './get.js'; -import has from './has.js'; -import hasIn from './hasIn.js'; -import invert from './invert.js'; -import invertBy from './invertBy.js'; -import invoke from './invoke.js'; -import keys from './keys.js'; -import keysIn from './keysIn.js'; -import mapKeys from './mapKeys.js'; -import mapValues from './mapValues.js'; -import merge from './merge.js'; -import mergeWith from './mergeWith.js'; -import omit from './omit.js'; -import omitBy from './omitBy.js'; -import pick from './pick.js'; -import pickBy from './pickBy.js'; -import result from './result.js'; -import set from './set.js'; -import setWith from './setWith.js'; -import toPairs from './toPairs.js'; -import toPairsIn from './toPairsIn.js'; -import transform from './transform.js'; -import unset from './unset.js'; -import update from './update.js'; -import updateWith from './updateWith.js'; -import values from './values.js'; -import valuesIn from './valuesIn.js'; - -export default { - assign, assignIn, assignInWith, assignWith, at, - create, defaults, defaultsDeep, entries, entriesIn, - extend, extendWith, findKey, findLastKey, forIn, - forInRight, forOwn, forOwnRight, functions, functionsIn, - get, has, hasIn, invert, invertBy, - invoke, keys, keysIn, mapKeys, mapValues, - merge, mergeWith, omit, omitBy, pick, - pickBy, result, set, setWith, toPairs, - toPairsIn, transform, unset, update, updateWith, - values, valuesIn -}; diff --git a/object.js b/object.js deleted file mode 100644 index aa7ce3d1c..000000000 --- a/object.js +++ /dev/null @@ -1,48 +0,0 @@ -export { default as assign } from './assign.js'; -export { default as assignIn } from './assignIn.js'; -export { default as assignInWith } from './assignInWith.js'; -export { default as assignWith } from './assignWith.js'; -export { default as at } from './at.js'; -export { default as create } from './create.js'; -export { default as defaults } from './defaults.js'; -export { default as defaultsDeep } from './defaultsDeep.js'; -export { default as entries } from './entries.js'; -export { default as entriesIn } from './entriesIn.js'; -export { default as extend } from './extend.js'; -export { default as extendWith } from './extendWith.js'; -export { default as findKey } from './findKey.js'; -export { default as findLastKey } from './findLastKey.js'; -export { default as forIn } from './forIn.js'; -export { default as forInRight } from './forInRight.js'; -export { default as forOwn } from './forOwn.js'; -export { default as forOwnRight } from './forOwnRight.js'; -export { default as functions } from './functions.js'; -export { default as functionsIn } from './functionsIn.js'; -export { default as get } from './get.js'; -export { default as has } from './has.js'; -export { default as hasIn } from './hasIn.js'; -export { default as invert } from './invert.js'; -export { default as invertBy } from './invertBy.js'; -export { default as invoke } from './invoke.js'; -export { default as keys } from './keys.js'; -export { default as keysIn } from './keysIn.js'; -export { default as mapKeys } from './mapKeys.js'; -export { default as mapValues } from './mapValues.js'; -export { default as merge } from './merge.js'; -export { default as mergeWith } from './mergeWith.js'; -export { default as omit } from './omit.js'; -export { default as omitBy } from './omitBy.js'; -export { default as pick } from './pick.js'; -export { default as pickBy } from './pickBy.js'; -export { default as result } from './result.js'; -export { default as set } from './set.js'; -export { default as setWith } from './setWith.js'; -export { default as toPairs } from './toPairs.js'; -export { default as toPairsIn } from './toPairsIn.js'; -export { default as transform } from './transform.js'; -export { default as unset } from './unset.js'; -export { default as update } from './update.js'; -export { default as updateWith } from './updateWith.js'; -export { default as values } from './values.js'; -export { default as valuesIn } from './valuesIn.js'; -export { default } from './object.default.js'; diff --git a/string.default.js b/string.default.js deleted file mode 100644 index 7a23a6431..000000000 --- a/string.default.js +++ /dev/null @@ -1,41 +0,0 @@ -import camelCase from './camelCase.js'; -import capitalize from './capitalize.js'; -import deburr from './deburr.js'; -import endsWith from './endsWith.js'; -import escape from './escape.js'; -import escapeRegExp from './escapeRegExp.js'; -import kebabCase from './kebabCase.js'; -import lowerCase from './lowerCase.js'; -import lowerFirst from './lowerFirst.js'; -import pad from './pad.js'; -import padEnd from './padEnd.js'; -import padStart from './padStart.js'; -import parseInt from './parseInt.js'; -import repeat from './repeat.js'; -import replace from './replace.js'; -import snakeCase from './snakeCase.js'; -import split from './split.js'; -import startCase from './startCase.js'; -import startsWith from './startsWith.js'; -import template from './template.js'; -import templateSettings from './templateSettings.js'; -import toLower from './toLower.js'; -import toUpper from './toUpper.js'; -import trim from './trim.js'; -import trimEnd from './trimEnd.js'; -import trimStart from './trimStart.js'; -import truncate from './truncate.js'; -import unescape from './unescape.js'; -import upperCase from './upperCase.js'; -import upperFirst from './upperFirst.js'; -import words from './words.js'; - -export default { - camelCase, capitalize, deburr, endsWith, escape, - escapeRegExp, kebabCase, lowerCase, lowerFirst, pad, - padEnd, padStart, parseInt, repeat, replace, - snakeCase, split, startCase, startsWith, template, - templateSettings, toLower, toUpper, trim, trimEnd, - trimStart, truncate, unescape, upperCase, upperFirst, - words -}; diff --git a/string.js b/string.js deleted file mode 100644 index 2534e7c71..000000000 --- a/string.js +++ /dev/null @@ -1,32 +0,0 @@ -export { default as camelCase } from './camelCase.js'; -export { default as capitalize } from './capitalize.js'; -export { default as deburr } from './deburr.js'; -export { default as endsWith } from './endsWith.js'; -export { default as escape } from './escape.js'; -export { default as escapeRegExp } from './escapeRegExp.js'; -export { default as kebabCase } from './kebabCase.js'; -export { default as lowerCase } from './lowerCase.js'; -export { default as lowerFirst } from './lowerFirst.js'; -export { default as pad } from './pad.js'; -export { default as padEnd } from './padEnd.js'; -export { default as padStart } from './padStart.js'; -export { default as parseInt } from './parseInt.js'; -export { default as repeat } from './repeat.js'; -export { default as replace } from './replace.js'; -export { default as snakeCase } from './snakeCase.js'; -export { default as split } from './split.js'; -export { default as startCase } from './startCase.js'; -export { default as startsWith } from './startsWith.js'; -export { default as template } from './template.js'; -export { default as templateSettings } from './templateSettings.js'; -export { default as toLower } from './toLower.js'; -export { default as toUpper } from './toUpper.js'; -export { default as trim } from './trim.js'; -export { default as trimEnd } from './trimEnd.js'; -export { default as trimStart } from './trimStart.js'; -export { default as truncate } from './truncate.js'; -export { default as unescape } from './unescape.js'; -export { default as upperCase } from './upperCase.js'; -export { default as upperFirst } from './upperFirst.js'; -export { default as words } from './words.js'; -export { default } from './string.default.js'; diff --git a/util.default.js b/util.default.js deleted file mode 100644 index c0795946e..000000000 --- a/util.default.js +++ /dev/null @@ -1,42 +0,0 @@ -import attempt from './attempt.js'; -import bindAll from './bindAll.js'; -import cond from './cond.js'; -import conforms from './conforms.js'; -import constant from './constant.js'; -import defaultTo from './defaultTo.js'; -import flow from './flow.js'; -import flowRight from './flowRight.js'; -import identity from './identity.js'; -import iteratee from './iteratee.js'; -import matches from './matches.js'; -import matchesProperty from './matchesProperty.js'; -import method from './method.js'; -import methodOf from './methodOf.js'; -import mixin from './mixin.js'; -import noop from './noop.js'; -import nthArg from './nthArg.js'; -import over from './over.js'; -import overEvery from './overEvery.js'; -import overSome from './overSome.js'; -import property from './property.js'; -import propertyOf from './propertyOf.js'; -import range from './range.js'; -import rangeRight from './rangeRight.js'; -import stubArray from './stubArray.js'; -import stubFalse from './stubFalse.js'; -import stubObject from './stubObject.js'; -import stubString from './stubString.js'; -import stubTrue from './stubTrue.js'; -import times from './times.js'; -import toPath from './toPath.js'; -import uniqueId from './uniqueId.js'; - -export default { - attempt, bindAll, cond, conforms, constant, - defaultTo, flow, flowRight, identity, iteratee, - matches, matchesProperty, method, methodOf, mixin, - noop, nthArg, over, overEvery, overSome, - property, propertyOf, range, rangeRight, stubArray, - stubFalse, stubObject, stubString, stubTrue, times, - toPath, uniqueId -}; diff --git a/util.js b/util.js deleted file mode 100644 index d03885882..000000000 --- a/util.js +++ /dev/null @@ -1,33 +0,0 @@ -export { default as attempt } from './attempt.js'; -export { default as bindAll } from './bindAll.js'; -export { default as cond } from './cond.js'; -export { default as conforms } from './conforms.js'; -export { default as constant } from './constant.js'; -export { default as defaultTo } from './defaultTo.js'; -export { default as flow } from './flow.js'; -export { default as flowRight } from './flowRight.js'; -export { default as identity } from './identity.js'; -export { default as iteratee } from './iteratee.js'; -export { default as matches } from './matches.js'; -export { default as matchesProperty } from './matchesProperty.js'; -export { default as method } from './method.js'; -export { default as methodOf } from './methodOf.js'; -export { default as mixin } from './mixin.js'; -export { default as noop } from './noop.js'; -export { default as nthArg } from './nthArg.js'; -export { default as over } from './over.js'; -export { default as overEvery } from './overEvery.js'; -export { default as overSome } from './overSome.js'; -export { default as property } from './property.js'; -export { default as propertyOf } from './propertyOf.js'; -export { default as range } from './range.js'; -export { default as rangeRight } from './rangeRight.js'; -export { default as stubArray } from './stubArray.js'; -export { default as stubFalse } from './stubFalse.js'; -export { default as stubObject } from './stubObject.js'; -export { default as stubString } from './stubString.js'; -export { default as stubTrue } from './stubTrue.js'; -export { default as times } from './times.js'; -export { default as toPath } from './toPath.js'; -export { default as uniqueId } from './uniqueId.js'; -export { default } from './util.default.js';