LendAndRegret/node_modules/es-toolkit/dist/compat/compat.js
2026-05-02 17:27:43 +08:00

596 lines
25 KiB
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const castArray = require('./array/castArray.js');
const chunk = require('./array/chunk.js');
const compact = require('./array/compact.js');
const concat = require('./array/concat.js');
const countBy = require('./array/countBy.js');
const difference = require('./array/difference.js');
const differenceBy = require('./array/differenceBy.js');
const differenceWith = require('./array/differenceWith.js');
const drop = require('./array/drop.js');
const dropRight = require('./array/dropRight.js');
const dropRightWhile = require('./array/dropRightWhile.js');
const dropWhile = require('./array/dropWhile.js');
const forEach = require('./array/forEach.js');
const forEachRight = require('./array/forEachRight.js');
const every = require('./array/every.js');
const fill = require('./array/fill.js');
const filter = require('./array/filter.js');
const find = require('./array/find.js');
const findIndex = require('./array/findIndex.js');
const findLast = require('./array/findLast.js');
const findLastIndex = require('./array/findLastIndex.js');
const head = require('./array/head.js');
const flatMap = require('./array/flatMap.js');
const flatMapDeep = require('./array/flatMapDeep.js');
const flatMapDepth = require('./array/flatMapDepth.js');
const flatten = require('./array/flatten.js');
const flattenDeep = require('./array/flattenDeep.js');
const flattenDepth = require('./array/flattenDepth.js');
const groupBy = require('./array/groupBy.js');
const includes = require('./array/includes.js');
const indexOf = require('./array/indexOf.js');
const initial = require('./array/initial.js');
const intersection = require('./array/intersection.js');
const intersectionBy = require('./array/intersectionBy.js');
const intersectionWith = require('./array/intersectionWith.js');
const invokeMap = require('./array/invokeMap.js');
const join = require('./array/join.js');
const keyBy = require('./array/keyBy.js');
const last = require('./array/last.js');
const lastIndexOf = require('./array/lastIndexOf.js');
const map = require('./array/map.js');
const nth = require('./array/nth.js');
const orderBy = require('./array/orderBy.js');
const partition = require('./array/partition.js');
const pull = require('./array/pull.js');
const pullAll = require('./array/pullAll.js');
const pullAllBy = require('./array/pullAllBy.js');
const pullAllWith = require('./array/pullAllWith.js');
const pullAt = require('./array/pullAt.js');
const reduce = require('./array/reduce.js');
const reduceRight = require('./array/reduceRight.js');
const reject = require('./array/reject.js');
const remove = require('./array/remove.js');
const reverse = require('./array/reverse.js');
const sample = require('./array/sample.js');
const sampleSize = require('./array/sampleSize.js');
const shuffle = require('./array/shuffle.js');
const size = require('./array/size.js');
const slice = require('./array/slice.js');
const some = require('./array/some.js');
const sortBy = require('./array/sortBy.js');
const sortedIndex = require('./array/sortedIndex.js');
const sortedIndexBy = require('./array/sortedIndexBy.js');
const sortedIndexOf = require('./array/sortedIndexOf.js');
const sortedLastIndex = require('./array/sortedLastIndex.js');
const sortedLastIndexBy = require('./array/sortedLastIndexBy.js');
const sortedLastIndexOf = require('./array/sortedLastIndexOf.js');
const tail = require('./array/tail.js');
const take = require('./array/take.js');
const takeRight = require('./array/takeRight.js');
const takeRightWhile = require('./array/takeRightWhile.js');
const takeWhile = require('./array/takeWhile.js');
const union = require('./array/union.js');
const unionBy = require('./array/unionBy.js');
const unionWith = require('./array/unionWith.js');
const uniq = require('./array/uniq.js');
const uniqBy = require('./array/uniqBy.js');
const uniqWith = require('./array/uniqWith.js');
const unzip = require('./array/unzip.js');
const unzipWith = require('./array/unzipWith.js');
const without = require('./array/without.js');
const xor = require('./array/xor.js');
const xorBy = require('./array/xorBy.js');
const xorWith = require('./array/xorWith.js');
const zip = require('./array/zip.js');
const zipObject = require('./array/zipObject.js');
const zipObjectDeep = require('./array/zipObjectDeep.js');
const zipWith = require('./array/zipWith.js');
const after = require('./function/after.js');
const ary = require('./function/ary.js');
const attempt = require('./function/attempt.js');
const before = require('./function/before.js');
const bind = require('./function/bind.js');
const bindKey = require('./function/bindKey.js');
const curry = require('./function/curry.js');
const curryRight = require('./function/curryRight.js');
const debounce = require('./function/debounce.js');
const defer = require('./function/defer.js');
const delay = require('./function/delay.js');
const flip = require('./function/flip.js');
const flow = require('./function/flow.js');
const flowRight = require('./function/flowRight.js');
const memoize = require('./function/memoize.js');
const negate = require('./function/negate.js');
const nthArg = require('./function/nthArg.js');
const once = require('./function/once.js');
const overArgs = require('./function/overArgs.js');
const partial = require('./function/partial.js');
const partialRight = require('./function/partialRight.js');
const rearg = require('./function/rearg.js');
const rest = require('./function/rest.js');
const spread = require('./function/spread.js');
const throttle = require('./function/throttle.js');
const unary = require('./function/unary.js');
const wrap = require('./function/wrap.js');
const add = require('./math/add.js');
const ceil = require('./math/ceil.js');
const clamp = require('./math/clamp.js');
const divide = require('./math/divide.js');
const floor = require('./math/floor.js');
const inRange = require('./math/inRange.js');
const max = require('./math/max.js');
const maxBy = require('./math/maxBy.js');
const mean = require('./math/mean.js');
const meanBy = require('./math/meanBy.js');
const min = require('./math/min.js');
const minBy = require('./math/minBy.js');
const multiply = require('./math/multiply.js');
const parseInt = require('./math/parseInt.js');
const random = require('./math/random.js');
const range = require('./math/range.js');
const rangeRight = require('./math/rangeRight.js');
const round = require('./math/round.js');
const subtract = require('./math/subtract.js');
const sum = require('./math/sum.js');
const sumBy = require('./math/sumBy.js');
const isEqual = require('../predicate/isEqual.js');
const identity = require('./function/identity.js');
const noop = require('./function/noop.js');
const assign = require('./object/assign.js');
const assignIn = require('./object/assignIn.js');
const assignInWith = require('./object/assignInWith.js');
const assignWith = require('./object/assignWith.js');
const at = require('./object/at.js');
const clone = require('./object/clone.js');
const cloneDeep = require('./object/cloneDeep.js');
const cloneDeepWith = require('./object/cloneDeepWith.js');
const cloneWith = require('./object/cloneWith.js');
const create = require('./object/create.js');
const defaults = require('./object/defaults.js');
const defaultsDeep = require('./object/defaultsDeep.js');
const findKey = require('./object/findKey.js');
const findLastKey = require('./object/findLastKey.js');
const forIn = require('./object/forIn.js');
const forInRight = require('./object/forInRight.js');
const forOwn = require('./object/forOwn.js');
const forOwnRight = require('./object/forOwnRight.js');
const fromPairs = require('./object/fromPairs.js');
const functions = require('./object/functions.js');
const functionsIn = require('./object/functionsIn.js');
const get = require('./object/get.js');
const has = require('./object/has.js');
const hasIn = require('./object/hasIn.js');
const invert = require('./object/invert.js');
const invertBy = require('./object/invertBy.js');
const keys = require('./object/keys.js');
const keysIn = require('./object/keysIn.js');
const mapKeys = require('./object/mapKeys.js');
const mapValues = require('./object/mapValues.js');
const merge = require('./object/merge.js');
const mergeWith = require('./object/mergeWith.js');
const omit = require('./object/omit.js');
const omitBy = require('./object/omitBy.js');
const pick = require('./object/pick.js');
const pickBy = require('./object/pickBy.js');
const property = require('./object/property.js');
const propertyOf = require('./object/propertyOf.js');
const result = require('./object/result.js');
const set = require('./object/set.js');
const setWith = require('./object/setWith.js');
const toDefaulted = require('./object/toDefaulted.js');
const toPairs = require('./object/toPairs.js');
const toPairsIn = require('./object/toPairsIn.js');
const transform = require('./object/transform.js');
const unset = require('./object/unset.js');
const update = require('./object/update.js');
const updateWith = require('./object/updateWith.js');
const values = require('./object/values.js');
const valuesIn = require('./object/valuesIn.js');
const isFunction = require('./predicate/isFunction.js');
const isLength = require('./predicate/isLength.js');
const isMatchWith = require('./predicate/isMatchWith.js');
const isNative = require('./predicate/isNative.js');
const isNull = require('./predicate/isNull.js');
const isUndefined = require('./predicate/isUndefined.js');
const conforms = require('./predicate/conforms.js');
const conformsTo = require('./predicate/conformsTo.js');
const isArguments = require('./predicate/isArguments.js');
const isArray = require('./predicate/isArray.js');
const isArrayBuffer = require('./predicate/isArrayBuffer.js');
const isArrayLike = require('./predicate/isArrayLike.js');
const isArrayLikeObject = require('./predicate/isArrayLikeObject.js');
const isBoolean = require('./predicate/isBoolean.js');
const isBuffer = require('./predicate/isBuffer.js');
const isDate = require('./predicate/isDate.js');
const isElement = require('./predicate/isElement.js');
const isEmpty = require('./predicate/isEmpty.js');
const isEqualWith = require('./predicate/isEqualWith.js');
const isError = require('./predicate/isError.js');
const isFinite = require('./predicate/isFinite.js');
const isInteger = require('./predicate/isInteger.js');
const isMap = require('./predicate/isMap.js');
const isMatch = require('./predicate/isMatch.js');
const isNaN = require('./predicate/isNaN.js');
const isNil = require('./predicate/isNil.js');
const isNumber = require('./predicate/isNumber.js');
const isObject = require('./predicate/isObject.js');
const isObjectLike = require('./predicate/isObjectLike.js');
const isPlainObject = require('./predicate/isPlainObject.js');
const isRegExp = require('./predicate/isRegExp.js');
const isSafeInteger = require('./predicate/isSafeInteger.js');
const isSet = require('./predicate/isSet.js');
const isString = require('./predicate/isString.js');
const isSymbol = require('./predicate/isSymbol.js');
const isTypedArray = require('./predicate/isTypedArray.js');
const isWeakMap = require('./predicate/isWeakMap.js');
const isWeakSet = require('./predicate/isWeakSet.js');
const matches = require('./predicate/matches.js');
const matchesProperty = require('./predicate/matchesProperty.js');
const capitalize = require('./string/capitalize.js');
const bindAll = require('./util/bindAll.js');
const camelCase = require('./string/camelCase.js');
const deburr = require('./string/deburr.js');
const endsWith = require('./string/endsWith.js');
const escape = require('./string/escape.js');
const escapeRegExp = require('./string/escapeRegExp.js');
const kebabCase = require('./string/kebabCase.js');
const lowerCase = require('./string/lowerCase.js');
const lowerFirst = require('./string/lowerFirst.js');
const pad = require('./string/pad.js');
const padEnd = require('./string/padEnd.js');
const padStart = require('./string/padStart.js');
const repeat = require('./string/repeat.js');
const replace = require('./string/replace.js');
const snakeCase = require('./string/snakeCase.js');
const split = require('./string/split.js');
const startCase = require('./string/startCase.js');
const startsWith = require('./string/startsWith.js');
const template = require('./string/template.js');
const toLower = require('./string/toLower.js');
const toUpper = require('./string/toUpper.js');
const trim = require('./string/trim.js');
const trimEnd = require('./string/trimEnd.js');
const trimStart = require('./string/trimStart.js');
const truncate = require('./string/truncate.js');
const unescape = require('./string/unescape.js');
const upperCase = require('./string/upperCase.js');
const upperFirst = require('./string/upperFirst.js');
const words = require('./string/words.js');
const cond = require('./util/cond.js');
const constant = require('./util/constant.js');
const defaultTo = require('./util/defaultTo.js');
const isEqualsSameValueZero = require('../_internal/isEqualsSameValueZero.js');
const gt = require('./util/gt.js');
const gte = require('./util/gte.js');
const invoke = require('./util/invoke.js');
const iteratee = require('./util/iteratee.js');
const lt = require('./util/lt.js');
const lte = require('./util/lte.js');
const method = require('./util/method.js');
const methodOf = require('./util/methodOf.js');
const now = require('./util/now.js');
const over = require('./util/over.js');
const overEvery = require('./util/overEvery.js');
const overSome = require('./util/overSome.js');
const stubArray = require('./util/stubArray.js');
const stubFalse = require('./util/stubFalse.js');
const stubObject = require('./util/stubObject.js');
const stubString = require('./util/stubString.js');
const stubTrue = require('./util/stubTrue.js');
const times = require('./util/times.js');
const toArray = require('./util/toArray.js');
const toFinite = require('./util/toFinite.js');
const toInteger = require('./util/toInteger.js');
const toLength = require('./util/toLength.js');
const toNumber = require('./util/toNumber.js');
const toPath = require('./util/toPath.js');
const toPlainObject = require('./util/toPlainObject.js');
const toSafeInteger = require('./util/toSafeInteger.js');
const toString = require('./util/toString.js');
const uniqueId = require('./util/uniqueId.js');
exports.castArray = castArray.castArray;
exports.chunk = chunk.chunk;
exports.compact = compact.compact;
exports.concat = concat.concat;
exports.countBy = countBy.countBy;
exports.difference = difference.difference;
exports.differenceBy = differenceBy.differenceBy;
exports.differenceWith = differenceWith.differenceWith;
exports.drop = drop.drop;
exports.dropRight = dropRight.dropRight;
exports.dropRightWhile = dropRightWhile.dropRightWhile;
exports.dropWhile = dropWhile.dropWhile;
exports.each = forEach.forEach;
exports.forEach = forEach.forEach;
exports.eachRight = forEachRight.forEachRight;
exports.forEachRight = forEachRight.forEachRight;
exports.every = every.every;
exports.fill = fill.fill;
exports.filter = filter.filter;
exports.find = find.find;
exports.findIndex = findIndex.findIndex;
exports.findLast = findLast.findLast;
exports.findLastIndex = findLastIndex.findLastIndex;
exports.first = head.head;
exports.head = head.head;
exports.flatMap = flatMap.flatMap;
exports.flatMapDeep = flatMapDeep.flatMapDeep;
exports.flatMapDepth = flatMapDepth.flatMapDepth;
exports.flatten = flatten.flatten;
exports.flattenDeep = flattenDeep.flattenDeep;
exports.flattenDepth = flattenDepth.flattenDepth;
exports.groupBy = groupBy.groupBy;
exports.includes = includes.includes;
exports.indexOf = indexOf.indexOf;
exports.initial = initial.initial;
exports.intersection = intersection.intersection;
exports.intersectionBy = intersectionBy.intersectionBy;
exports.intersectionWith = intersectionWith.intersectionWith;
exports.invokeMap = invokeMap.invokeMap;
exports.join = join.join;
exports.keyBy = keyBy.keyBy;
exports.last = last.last;
exports.lastIndexOf = lastIndexOf.lastIndexOf;
exports.map = map.map;
exports.nth = nth.nth;
exports.orderBy = orderBy.orderBy;
exports.partition = partition.partition;
exports.pull = pull.pull;
exports.pullAll = pullAll.pullAll;
exports.pullAllBy = pullAllBy.pullAllBy;
exports.pullAllWith = pullAllWith.pullAllWith;
exports.pullAt = pullAt.pullAt;
exports.reduce = reduce.reduce;
exports.reduceRight = reduceRight.reduceRight;
exports.reject = reject.reject;
exports.remove = remove.remove;
exports.reverse = reverse.reverse;
exports.sample = sample.sample;
exports.sampleSize = sampleSize.sampleSize;
exports.shuffle = shuffle.shuffle;
exports.size = size.size;
exports.slice = slice.slice;
exports.some = some.some;
exports.sortBy = sortBy.sortBy;
exports.sortedIndex = sortedIndex.sortedIndex;
exports.sortedIndexBy = sortedIndexBy.sortedIndexBy;
exports.sortedIndexOf = sortedIndexOf.sortedIndexOf;
exports.sortedLastIndex = sortedLastIndex.sortedLastIndex;
exports.sortedLastIndexBy = sortedLastIndexBy.sortedLastIndexBy;
exports.sortedLastIndexOf = sortedLastIndexOf.sortedLastIndexOf;
exports.tail = tail.tail;
exports.take = take.take;
exports.takeRight = takeRight.takeRight;
exports.takeRightWhile = takeRightWhile.takeRightWhile;
exports.takeWhile = takeWhile.takeWhile;
exports.union = union.union;
exports.unionBy = unionBy.unionBy;
exports.unionWith = unionWith.unionWith;
exports.uniq = uniq.uniq;
exports.uniqBy = uniqBy.uniqBy;
exports.uniqWith = uniqWith.uniqWith;
exports.unzip = unzip.unzip;
exports.unzipWith = unzipWith.unzipWith;
exports.without = without.without;
exports.xor = xor.xor;
exports.xorBy = xorBy.xorBy;
exports.xorWith = xorWith.xorWith;
exports.zip = zip.zip;
exports.zipObject = zipObject.zipObject;
exports.zipObjectDeep = zipObjectDeep.zipObjectDeep;
exports.zipWith = zipWith.zipWith;
exports.after = after.after;
exports.ary = ary.ary;
exports.attempt = attempt.attempt;
exports.before = before.before;
exports.bind = bind.bind;
exports.bindKey = bindKey.bindKey;
exports.curry = curry.curry;
exports.curryRight = curryRight.curryRight;
exports.debounce = debounce.debounce;
exports.defer = defer.defer;
exports.delay = delay.delay;
exports.flip = flip.flip;
exports.flow = flow.flow;
exports.flowRight = flowRight.flowRight;
exports.memoize = memoize.memoize;
exports.negate = negate.negate;
exports.nthArg = nthArg.nthArg;
exports.once = once.once;
exports.overArgs = overArgs.overArgs;
exports.partial = partial.partial;
exports.partialRight = partialRight.partialRight;
exports.rearg = rearg.rearg;
exports.rest = rest.rest;
exports.spread = spread.spread;
exports.throttle = throttle.throttle;
exports.unary = unary.unary;
exports.wrap = wrap.wrap;
exports.add = add.add;
exports.ceil = ceil.ceil;
exports.clamp = clamp.clamp;
exports.divide = divide.divide;
exports.floor = floor.floor;
exports.inRange = inRange.inRange;
exports.max = max.max;
exports.maxBy = maxBy.maxBy;
exports.mean = mean.mean;
exports.meanBy = meanBy.meanBy;
exports.min = min.min;
exports.minBy = minBy.minBy;
exports.multiply = multiply.multiply;
exports.parseInt = parseInt.parseInt;
exports.random = random.random;
exports.range = range.range;
exports.rangeRight = rangeRight.rangeRight;
exports.round = round.round;
exports.subtract = subtract.subtract;
exports.sum = sum.sum;
exports.sumBy = sumBy.sumBy;
exports.isEqual = isEqual.isEqual;
exports.identity = identity.identity;
exports.noop = noop.noop;
exports.assign = assign.assign;
exports.assignIn = assignIn.assignIn;
exports.extend = assignIn.assignIn;
exports.assignInWith = assignInWith.assignInWith;
exports.extendWith = assignInWith.assignInWith;
exports.assignWith = assignWith.assignWith;
exports.at = at.at;
exports.clone = clone.clone;
exports.cloneDeep = cloneDeep.cloneDeep;
exports.cloneDeepWith = cloneDeepWith.cloneDeepWith;
exports.cloneWith = cloneWith.cloneWith;
exports.create = create.create;
exports.defaults = defaults.defaults;
exports.defaultsDeep = defaultsDeep.defaultsDeep;
exports.findKey = findKey.findKey;
exports.findLastKey = findLastKey.findLastKey;
exports.forIn = forIn.forIn;
exports.forInRight = forInRight.forInRight;
exports.forOwn = forOwn.forOwn;
exports.forOwnRight = forOwnRight.forOwnRight;
exports.fromPairs = fromPairs.fromPairs;
exports.functions = functions.functions;
exports.functionsIn = functionsIn.functionsIn;
exports.get = get.get;
exports.has = has.has;
exports.hasIn = hasIn.hasIn;
exports.invert = invert.invert;
exports.invertBy = invertBy.invertBy;
exports.keys = keys.keys;
exports.keysIn = keysIn.keysIn;
exports.mapKeys = mapKeys.mapKeys;
exports.mapValues = mapValues.mapValues;
exports.merge = merge.merge;
exports.mergeWith = mergeWith.mergeWith;
exports.omit = omit.omit;
exports.omitBy = omitBy.omitBy;
exports.pick = pick.pick;
exports.pickBy = pickBy.pickBy;
exports.property = property.property;
exports.propertyOf = propertyOf.propertyOf;
exports.result = result.result;
exports.set = set.set;
exports.setWith = setWith.setWith;
exports.toDefaulted = toDefaulted.toDefaulted;
exports.toPairs = toPairs.toPairs;
exports.toPairsIn = toPairsIn.toPairsIn;
exports.transform = transform.transform;
exports.unset = unset.unset;
exports.update = update.update;
exports.updateWith = updateWith.updateWith;
exports.values = values.values;
exports.valuesIn = valuesIn.valuesIn;
exports.isFunction = isFunction.isFunction;
exports.isLength = isLength.isLength;
exports.isMatchWith = isMatchWith.isMatchWith;
exports.isNative = isNative.isNative;
exports.isNull = isNull.isNull;
exports.isUndefined = isUndefined.isUndefined;
exports.conforms = conforms.conforms;
exports.conformsTo = conformsTo.conformsTo;
exports.isArguments = isArguments.isArguments;
exports.isArray = isArray.isArray;
exports.isArrayBuffer = isArrayBuffer.isArrayBuffer;
exports.isArrayLike = isArrayLike.isArrayLike;
exports.isArrayLikeObject = isArrayLikeObject.isArrayLikeObject;
exports.isBoolean = isBoolean.isBoolean;
exports.isBuffer = isBuffer.isBuffer;
exports.isDate = isDate.isDate;
exports.isElement = isElement.isElement;
exports.isEmpty = isEmpty.isEmpty;
exports.isEqualWith = isEqualWith.isEqualWith;
exports.isError = isError.isError;
exports.isFinite = isFinite.isFinite;
exports.isInteger = isInteger.isInteger;
exports.isMap = isMap.isMap;
exports.isMatch = isMatch.isMatch;
exports.isNaN = isNaN.isNaN;
exports.isNil = isNil.isNil;
exports.isNumber = isNumber.isNumber;
exports.isObject = isObject.isObject;
exports.isObjectLike = isObjectLike.isObjectLike;
exports.isPlainObject = isPlainObject.isPlainObject;
exports.isRegExp = isRegExp.isRegExp;
exports.isSafeInteger = isSafeInteger.isSafeInteger;
exports.isSet = isSet.isSet;
exports.isString = isString.isString;
exports.isSymbol = isSymbol.isSymbol;
exports.isTypedArray = isTypedArray.isTypedArray;
exports.isWeakMap = isWeakMap.isWeakMap;
exports.isWeakSet = isWeakSet.isWeakSet;
exports.matches = matches.matches;
exports.matchesProperty = matchesProperty.matchesProperty;
exports.capitalize = capitalize.capitalize;
exports.bindAll = bindAll.bindAll;
exports.camelCase = camelCase.camelCase;
exports.deburr = deburr.deburr;
exports.endsWith = endsWith.endsWith;
exports.escape = escape.escape;
exports.escapeRegExp = escapeRegExp.escapeRegExp;
exports.kebabCase = kebabCase.kebabCase;
exports.lowerCase = lowerCase.lowerCase;
exports.lowerFirst = lowerFirst.lowerFirst;
exports.pad = pad.pad;
exports.padEnd = padEnd.padEnd;
exports.padStart = padStart.padStart;
exports.repeat = repeat.repeat;
exports.replace = replace.replace;
exports.snakeCase = snakeCase.snakeCase;
exports.split = split.split;
exports.startCase = startCase.startCase;
exports.startsWith = startsWith.startsWith;
exports.template = template.template;
exports.templateSettings = template.templateSettings;
exports.toLower = toLower.toLower;
exports.toUpper = toUpper.toUpper;
exports.trim = trim.trim;
exports.trimEnd = trimEnd.trimEnd;
exports.trimStart = trimStart.trimStart;
exports.truncate = truncate.truncate;
exports.unescape = unescape.unescape;
exports.upperCase = upperCase.upperCase;
exports.upperFirst = upperFirst.upperFirst;
exports.words = words.words;
exports.cond = cond.cond;
exports.constant = constant.constant;
exports.defaultTo = defaultTo.defaultTo;
exports.eq = isEqualsSameValueZero.isEqualsSameValueZero;
exports.gt = gt.gt;
exports.gte = gte.gte;
exports.invoke = invoke.invoke;
exports.iteratee = iteratee.iteratee;
exports.lt = lt.lt;
exports.lte = lte.lte;
exports.method = method.method;
exports.methodOf = methodOf.methodOf;
exports.now = now.now;
exports.over = over.over;
exports.overEvery = overEvery.overEvery;
exports.overSome = overSome.overSome;
exports.stubArray = stubArray.stubArray;
exports.stubFalse = stubFalse.stubFalse;
exports.stubObject = stubObject.stubObject;
exports.stubString = stubString.stubString;
exports.stubTrue = stubTrue.stubTrue;
exports.times = times.times;
exports.toArray = toArray.toArray;
exports.toFinite = toFinite.toFinite;
exports.toInteger = toInteger.toInteger;
exports.toLength = toLength.toLength;
exports.toNumber = toNumber.toNumber;
exports.toPath = toPath.toPath;
exports.toPlainObject = toPlainObject.toPlainObject;
exports.toSafeInteger = toSafeInteger.toSafeInteger;
exports.toString = toString.toString;
exports.uniqueId = uniqueId.uniqueId;