From aa60e55db4572daf8a4921c3136fb983a2a53aa8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 11 Jan 2017 10:06:12 -0800 Subject: [PATCH] Update module paths. --- .internal/ListCache.js | 2 +- .internal/MapCache.js | 4 +- .internal/SetCache.js | 2 +- .internal/Stack.js | 4 +- .internal/arrayIncludes.js | 2 +- .internal/arrayLikeKeys.js | 10 +- .internal/arraySample.js | 2 +- .internal/arraySampleSize.js | 6 +- .internal/arrayShuffle.js | 4 +- .internal/assignMergeValue.js | 4 +- .internal/assignValue.js | 4 +- .internal/assocIndexOf.js | 2 +- .internal/baseAggregator.js | 2 +- .internal/baseAssign.js | 4 +- .internal/baseAssignIn.js | 4 +- .internal/baseAt.js | 2 +- .internal/baseClone.js | 157 ++++++++++++++++++++++++---- .internal/baseConforms.js | 4 +- .internal/baseCreate.js | 2 +- .internal/baseDifference.js | 10 +- .internal/baseEach.js | 4 +- .internal/baseEachRight.js | 4 +- .internal/baseEvery.js | 2 +- .internal/baseFill.js | 4 +- .internal/baseFilter.js | 2 +- .internal/baseFlatten.js | 4 +- .internal/baseFor.js | 2 +- .internal/baseForOwn.js | 4 +- .internal/baseForOwnRight.js | 4 +- .internal/baseForRight.js | 2 +- .internal/baseFunctions.js | 4 +- .internal/baseGet.js | 4 +- .internal/baseGetTag.js | 4 +- .internal/baseIndexOf.js | 6 +- .internal/baseIntersection.js | 10 +- .internal/baseInverter.js | 2 +- .internal/baseInvoke.js | 10 +- .internal/baseIsEqual.js | 4 +- .internal/baseIsEqualDeep.js | 14 +-- .internal/baseIsMatch.js | 4 +- .internal/baseKeys.js | 4 +- .internal/baseKeysIn.js | 6 +- .internal/baseMap.js | 4 +- .internal/baseMatches.js | 6 +- .internal/baseMatchesProperty.js | 14 +-- .internal/baseMerge.js | 12 +-- .internal/baseMergeDeep.js | 26 ++--- .internal/baseNth.js | 2 +- .internal/baseOrderBy.js | 10 +- .internal/basePick.js | 4 +- .internal/basePickBy.js | 6 +- .internal/basePropertyDeep.js | 2 +- .internal/basePullAll.js | 8 +- .internal/basePullAt.js | 4 +- .internal/baseSample.js | 4 +- .internal/baseSampleSize.js | 6 +- .internal/baseSet.js | 10 +- .internal/baseSetToString.js | 4 +- .internal/baseShuffle.js | 4 +- .internal/baseSome.js | 2 +- .internal/baseSortedIndex.js | 6 +- .internal/baseSortedIndexBy.js | 2 +- .internal/baseSortedUniq.js | 2 +- .internal/baseToNumber.js | 2 +- .internal/baseToPairs.js | 2 +- .internal/baseToString.js | 4 +- .internal/baseUniq.js | 12 +-- .internal/baseUnset.js | 8 +- .internal/baseUpdate.js | 4 +- .internal/baseValues.js | 2 +- .internal/baseWhile.js | 2 +- .internal/baseWrapperValue.js | 6 +- .internal/baseXor.js | 6 +- .internal/castArrayLikeObject.js | 2 +- .internal/castPath.js | 6 +- .internal/castSlice.js | 2 +- .internal/charsEndIndex.js | 2 +- .internal/charsStartIndex.js | 2 +- .internal/cloneBuffer.js | 2 +- .internal/cloneDataView.js | 2 +- .internal/cloneMap.js | 6 +- .internal/cloneSet.js | 6 +- .internal/cloneTypedArray.js | 2 +- .internal/compareAscending.js | 2 +- .internal/compareMultiple.js | 2 +- .internal/copyObject.js | 4 +- .internal/copySymbols.js | 4 +- .internal/copySymbolsIn.js | 4 +- .internal/createCaseFirst.js | 8 +- .internal/createCompounder.js | 6 +- .internal/createCtor.js | 4 +- .internal/createMathOperation.js | 4 +- .internal/createPadding.js | 12 +-- .internal/createRange.js | 6 +- .internal/createRound.js | 6 +- .internal/createSet.js | 2 +- .internal/customDefaultsAssignIn.js | 2 +- .internal/customDefaultsMerge.js | 4 +- .internal/deburrLetter.js | 2 +- .internal/equalArrays.js | 6 +- .internal/equalByTag.js | 8 +- .internal/equalObjects.js | 2 +- .internal/getAllKeys.js | 4 +- .internal/getAllKeysIn.js | 4 +- .internal/getMatchData.js | 4 +- .internal/getSymbols.js | 4 +- .internal/getSymbolsIn.js | 6 +- .internal/getTag.js | 4 +- .internal/hasPath.js | 10 +- .internal/isFlattenable.js | 2 +- .internal/isIterateeCall.js | 8 +- .internal/isKey.js | 2 +- .internal/isStrictComparable.js | 2 +- .internal/memoizeCapped.js | 2 +- .internal/mergeData.js | 6 +- .internal/nodeUtil.js | 2 +- .internal/parent.js | 4 +- .internal/reorder.js | 4 +- .internal/root.js | 2 +- .internal/setToString.js | 4 +- .internal/shuffleSelf.js | 2 +- .internal/stringSize.js | 6 +- .internal/stringToArray.js | 6 +- .internal/stringToPath.js | 2 +- .internal/toKey.js | 2 +- 125 files changed, 427 insertions(+), 306 deletions(-) diff --git a/.internal/ListCache.js b/.internal/ListCache.js index 4d9495282..03e588d37 100644 --- a/.internal/ListCache.js +++ b/.internal/ListCache.js @@ -1,4 +1,4 @@ -import assocIndexOf from './.internal/assocIndexOf.js'; +import assocIndexOf from './assocIndexOf.js'; /** Built-in value references. */ const splice = Array.prototype.splice; diff --git a/.internal/MapCache.js b/.internal/MapCache.js index 926d390be..122ae9b24 100644 --- a/.internal/MapCache.js +++ b/.internal/MapCache.js @@ -1,6 +1,6 @@ -import Hash from './.internal/Hash.js'; -import ListCache from './.internal/ListCache.js'; +import Hash from './Hash.js'; +import ListCache from './ListCache.js'; /** * Gets the data for `map`. diff --git a/.internal/SetCache.js b/.internal/SetCache.js index aa0f87762..98545532c 100644 --- a/.internal/SetCache.js +++ b/.internal/SetCache.js @@ -1,4 +1,4 @@ -import MapCache from './.internal/MapCache.js'; +import MapCache from './MapCache.js'; /** Used to stand-in for `undefined` hash values. */ const HASH_UNDEFINED = '__lodash_hash_undefined__'; diff --git a/.internal/Stack.js b/.internal/Stack.js index 1f79959f3..af9e0742e 100644 --- a/.internal/Stack.js +++ b/.internal/Stack.js @@ -1,5 +1,5 @@ -import ListCache from './.internal/ListCache.js'; -import MapCache from './.internal/MapCache.js'; +import ListCache from './ListCache.js'; +import MapCache from './MapCache.js'; /** Used as the size to enable large array optimizations. */ const LARGE_ARRAY_SIZE = 200; diff --git a/.internal/arrayIncludes.js b/.internal/arrayIncludes.js index 20689905e..96a563b34 100644 --- a/.internal/arrayIncludes.js +++ b/.internal/arrayIncludes.js @@ -1,4 +1,4 @@ -import baseIndexOf from './.internal/baseIndexOf.js'; +import baseIndexOf from './baseIndexOf.js'; /** * A specialized version of `includes` for arrays without support for diff --git a/.internal/arrayLikeKeys.js b/.internal/arrayLikeKeys.js index f392d228e..2f664304b 100644 --- a/.internal/arrayLikeKeys.js +++ b/.internal/arrayLikeKeys.js @@ -1,8 +1,8 @@ -import baseTimes from './.internal/baseTimes.js'; -import isArguments from './isArguments.js'; -import isBuffer from './isBuffer.js'; -import isIndex from './.internal/isIndex.js'; -import isTypedArray from './isTypedArray.js'; +import baseTimes from './baseTimes.js'; +import isArguments from '../isArguments.js'; +import isBuffer from '../isBuffer.js'; +import isIndex from './isIndex.js'; +import isTypedArray from '../isTypedArray.js'; /** Used to check objects for own properties. */ const hasOwnProperty = Object.prototype.hasOwnProperty; diff --git a/.internal/arraySample.js b/.internal/arraySample.js index 4feb5a416..15f8a2179 100644 --- a/.internal/arraySample.js +++ b/.internal/arraySample.js @@ -1,4 +1,4 @@ -import baseRandom from './.internal/baseRandom.js'; +import baseRandom from './baseRandom.js'; /** * A specialized version of `sample` for arrays. diff --git a/.internal/arraySampleSize.js b/.internal/arraySampleSize.js index f8ed2ad43..ebae24df7 100644 --- a/.internal/arraySampleSize.js +++ b/.internal/arraySampleSize.js @@ -1,6 +1,6 @@ -import baseClamp from './.internal/baseClamp.js'; -import copyArray from './.internal/copyArray.js'; -import shuffleSelf from './.internal/shuffleSelf.js'; +import baseClamp from './baseClamp.js'; +import copyArray from './copyArray.js'; +import shuffleSelf from './shuffleSelf.js'; /** * A specialized version of `sampleSize` for arrays. diff --git a/.internal/arrayShuffle.js b/.internal/arrayShuffle.js index beff8417c..4c46f8bc3 100644 --- a/.internal/arrayShuffle.js +++ b/.internal/arrayShuffle.js @@ -1,5 +1,5 @@ -import copyArray from './.internal/copyArray.js'; -import shuffleSelf from './.internal/shuffleSelf.js'; +import copyArray from './copyArray.js'; +import shuffleSelf from './shuffleSelf.js'; /** * A specialized version of `shuffle` for arrays. diff --git a/.internal/assignMergeValue.js b/.internal/assignMergeValue.js index 754f0c78c..72099d788 100644 --- a/.internal/assignMergeValue.js +++ b/.internal/assignMergeValue.js @@ -1,5 +1,5 @@ -import baseAssignValue from './.internal/baseAssignValue.js'; -import eq from './eq.js'; +import baseAssignValue from './baseAssignValue.js'; +import eq from '../eq.js'; /** * This function is like `assignValue` except that it doesn't assign diff --git a/.internal/assignValue.js b/.internal/assignValue.js index 4f05bf5b8..0331eaaa9 100644 --- a/.internal/assignValue.js +++ b/.internal/assignValue.js @@ -1,5 +1,5 @@ -import baseAssignValue from './.internal/baseAssignValue.js'; -import eq from './eq.js'; +import baseAssignValue from './baseAssignValue.js'; +import eq from '../eq.js'; /** Used to check objects for own properties. */ const hasOwnProperty = Object.prototype.hasOwnProperty; diff --git a/.internal/assocIndexOf.js b/.internal/assocIndexOf.js index ac0d5888b..869c99da7 100644 --- a/.internal/assocIndexOf.js +++ b/.internal/assocIndexOf.js @@ -1,4 +1,4 @@ -import eq from './eq.js'; +import eq from '../eq.js'; /** * Gets the index at which the `key` is found in `array` of key-value pairs. diff --git a/.internal/baseAggregator.js b/.internal/baseAggregator.js index a186c28a7..59c4ee2e3 100644 --- a/.internal/baseAggregator.js +++ b/.internal/baseAggregator.js @@ -1,4 +1,4 @@ -import baseEach from './.internal/baseEach.js'; +import baseEach from './baseEach.js'; /** * Aggregates elements of `collection` on `accumulator` with keys transformed diff --git a/.internal/baseAssign.js b/.internal/baseAssign.js index 7325188a1..27f190380 100644 --- a/.internal/baseAssign.js +++ b/.internal/baseAssign.js @@ -1,5 +1,5 @@ -import copyObject from './.internal/copyObject.js'; -import keys from './keys.js'; +import copyObject from './copyObject.js'; +import keys from '../keys.js'; /** * The base implementation of `assign` without support for multiple sources diff --git a/.internal/baseAssignIn.js b/.internal/baseAssignIn.js index f84a22bb2..d3e9be6ad 100644 --- a/.internal/baseAssignIn.js +++ b/.internal/baseAssignIn.js @@ -1,5 +1,5 @@ -import copyObject from './.internal/copyObject.js'; -import keysIn from './keysIn.js'; +import copyObject from './copyObject.js'; +import keysIn from '../keysIn.js'; /** * The base implementation of `assignIn` without support for multiple sources diff --git a/.internal/baseAt.js b/.internal/baseAt.js index f9c90f5ab..d664bf916 100644 --- a/.internal/baseAt.js +++ b/.internal/baseAt.js @@ -1,4 +1,4 @@ -import get from './get.js'; +import get from '../get.js'; /** * The base implementation of `at` without support for individual paths. diff --git a/.internal/baseClone.js b/.internal/baseClone.js index 28bb35d29..8057a9677 100644 --- a/.internal/baseClone.js +++ b/.internal/baseClone.js @@ -1,21 +1,25 @@ -import Stack from './.internal/Stack.js'; -import arrayEach from './.internal/arrayEach.js'; -import assignValue from './.internal/assignValue.js'; -import baseAssign from './.internal/baseAssign.js'; -import baseAssignIn from './.internal/baseAssignIn.js'; -import cloneBuffer from './.internal/cloneBuffer.js'; -import copyArray from './.internal/copyArray.js'; -import copySymbols from './.internal/copySymbols.js'; -import copySymbolsIn from './.internal/copySymbolsIn.js'; -import getAllKeys from './.internal/getAllKeys.js'; -import getAllKeysIn from './.internal/getAllKeysIn.js'; -import getTag from './.internal/getTag.js'; -import initCloneArray from './.internal/initCloneArray.js'; -import initCloneByTag from './.internal/initCloneByTag.js'; -import initCloneObject from './.internal/initCloneObject.js'; -import isBuffer from './isBuffer.js'; -import isObject from './isObject.js'; -import keys from './keys.js'; +import Stack from './Stack.js'; +import arrayEach from './arrayEach.js'; +import assignValue from './assignValue.js'; +import baseAssign from './baseAssign.js'; +import baseAssignIn from './baseAssignIn.js'; +import baseCreate from './baseCreate.js'; +import cloneBuffer from './cloneBuffer.js'; +import copyArray from './copyArray.js'; +import copySymbols from './copySymbols.js'; +import copySymbolsIn from './copySymbolsIn.js'; +import getAllKeys from './getAllKeys.js'; +import getAllKeysIn from './getAllKeysIn.js'; +import getTag from './getTag.js'; +import initCloneArray from './initCloneArray.js'; +import initCloneByTag from './initCloneByTag.js'; +import initCloneObject from './initCloneObject.js'; +import isBuffer from '../isBuffer.js'; +import isObject from '../isObject.js'; +import isPrototype from './isPrototype.js'; +import keys from '../keys.js'; + + /** Used to compose bitmasks for cloning. */ const CLONE_DEEP_FLAG = 1; @@ -67,6 +71,123 @@ cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true; cloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false; + +/** + * Initializes an object clone. + * + * @private + * @param {Object} object The object to clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneObject(object) { + return (typeof object.constructor == 'function' && !isPrototype(object)) + ? baseCreate(Object.getPrototypeOf(object)) + : {}; +} + +import cloneArrayBuffer from './cloneArrayBuffer.js'; +import cloneDataView from './cloneDataView.js'; +import cloneMap from './cloneMap.js'; +import cloneRegExp from './cloneRegExp.js'; +import cloneSet from './cloneSet.js'; +import cloneSymbol from './cloneSymbol.js'; +import cloneTypedArray from './cloneTypedArray.js'; + +/** `Object#toString` result references. */ +const boolTag = '[object Boolean]'; +const dateTag = '[object Date]'; +const mapTag = '[object Map]'; +const numberTag = '[object Number]'; +const regexpTag = '[object RegExp]'; +const setTag = '[object Set]'; +const stringTag = '[object String]'; +const symbolTag = '[object Symbol]'; + +const arrayBufferTag = '[object ArrayBuffer]'; +const dataViewTag = '[object DataView]'; +const float32Tag = '[object Float32Array]'; +const float64Tag = '[object Float64Array]'; +const int8Tag = '[object Int8Array]'; +const int16Tag = '[object Int16Array]'; +const int32Tag = '[object Int32Array]'; +const uint8Tag = '[object Uint8Array]'; +const uint8ClampedTag = '[object Uint8ClampedArray]'; +const uint16Tag = '[object Uint16Array]'; +const uint32Tag = '[object Uint32Array]'; + +/** + * Initializes an object clone based on its `toStringTag`. + * + * **Note:** This function only supports cloning values with tags of + * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`. + * + * @private + * @param {Object} object The object to clone. + * @param {string} tag The `toStringTag` of the object to clone. + * @param {Function} cloneFunc The function to clone values. + * @param {boolean} [isDeep] Specify a deep clone. + * @returns {Object} Returns the initialized clone. + */ +function initCloneByTag(object, tag, cloneFunc, isDeep) { + const Ctor = object.constructor; + switch (tag) { + case arrayBufferTag: + return cloneArrayBuffer(object); + + case boolTag: + case dateTag: + return new Ctor(+object); + + case dataViewTag: + return cloneDataView(object, isDeep); + + case float32Tag: case float64Tag: + case int8Tag: case int16Tag: case int32Tag: + case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag: + return cloneTypedArray(object, isDeep); + + case mapTag: + return cloneMap(object, isDeep, cloneFunc); + + case numberTag: + case stringTag: + return new Ctor(object); + + case regexpTag: + return cloneRegExp(object); + + case setTag: + return cloneSet(object, isDeep, cloneFunc); + + case symbolTag: + return cloneSymbol(object); + } +} + +/** Used to check objects for own properties. */ +const hasOwnProperty = Object.prototype.hasOwnProperty; + +/** + * Initializes an array clone. + * + * @private + * @param {Array} array The array to clone. + * @returns {Array} Returns the initialized clone. + */ +function initCloneArray(array) { + const length = array.length; + const result = array.constructor(length); + + // Add properties assigned by `RegExp#exec`. + if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) { + result.index = array.index; + result.input = array.input; + } + return result; +} + + + /** * The base implementation of `clone` and `cloneDeep` which tracks * traversed objects. diff --git a/.internal/baseConforms.js b/.internal/baseConforms.js index 638a561bd..47ddb2a1b 100644 --- a/.internal/baseConforms.js +++ b/.internal/baseConforms.js @@ -1,5 +1,5 @@ -import baseConformsTo from './.internal/baseConformsTo.js'; -import keys from './keys.js'; +import baseConformsTo from './baseConformsTo.js'; +import keys from '../keys.js'; /** * The base implementation of `conforms` which doesn't clone `source`. diff --git a/.internal/baseCreate.js b/.internal/baseCreate.js index 66776d99c..04f70d783 100644 --- a/.internal/baseCreate.js +++ b/.internal/baseCreate.js @@ -1,4 +1,4 @@ -import isObject from './isObject.js'; +import isObject from '../isObject.js'; /** * The base implementation of `create` without support for assigning diff --git a/.internal/baseDifference.js b/.internal/baseDifference.js index 1a4767fc3..a600512f6 100644 --- a/.internal/baseDifference.js +++ b/.internal/baseDifference.js @@ -1,8 +1,8 @@ -import SetCache from './.internal/SetCache.js'; -import arrayIncludes from './.internal/arrayIncludes.js'; -import arrayIncludesWith from './.internal/arrayIncludesWith.js'; -import arrayMap from './.internal/arrayMap.js'; -import cacheHas from './.internal/cacheHas.js'; +import SetCache from './SetCache.js'; +import arrayIncludes from './arrayIncludes.js'; +import arrayIncludesWith from './arrayIncludesWith.js'; +import arrayMap from './arrayMap.js'; +import cacheHas from './cacheHas.js'; /** Used as the size to enable large array optimizations. */ const LARGE_ARRAY_SIZE = 200; diff --git a/.internal/baseEach.js b/.internal/baseEach.js index 4a98070e1..3ba751ca9 100644 --- a/.internal/baseEach.js +++ b/.internal/baseEach.js @@ -1,5 +1,5 @@ -import baseForOwn from './.internal/baseForOwn.js'; -import createBaseEach from './.internal/createBaseEach.js'; +import baseForOwn from './baseForOwn.js'; +import createBaseEach from './createBaseEach.js'; /** * The base implementation of `forEach`. diff --git a/.internal/baseEachRight.js b/.internal/baseEachRight.js index 135ccdc7c..4c70df007 100644 --- a/.internal/baseEachRight.js +++ b/.internal/baseEachRight.js @@ -1,5 +1,5 @@ -import baseForOwnRight from './.internal/baseForOwnRight.js'; -import createBaseEach from './.internal/createBaseEach.js'; +import baseForOwnRight from './baseForOwnRight.js'; +import createBaseEach from './createBaseEach.js'; /** * The base implementation of `forEachRight`. diff --git a/.internal/baseEvery.js b/.internal/baseEvery.js index e0eea1722..87d26bfbd 100644 --- a/.internal/baseEvery.js +++ b/.internal/baseEvery.js @@ -1,4 +1,4 @@ -import baseEach from './.internal/baseEach.js'; +import baseEach from './baseEach.js'; /** * The base implementation of `every`. diff --git a/.internal/baseFill.js b/.internal/baseFill.js index f611ce524..36248d54e 100644 --- a/.internal/baseFill.js +++ b/.internal/baseFill.js @@ -1,5 +1,5 @@ -import toInteger from './toInteger.js'; -import toLength from './toLength.js'; +import toInteger from '../toInteger.js'; +import toLength from '../toLength.js'; /** * The base implementation of `fill` without an iteratee call guard. diff --git a/.internal/baseFilter.js b/.internal/baseFilter.js index 0ac51d707..5149d5e52 100644 --- a/.internal/baseFilter.js +++ b/.internal/baseFilter.js @@ -1,4 +1,4 @@ -import baseEach from './.internal/baseEach.js'; +import baseEach from './baseEach.js'; /** * The base implementation of `filter`. diff --git a/.internal/baseFlatten.js b/.internal/baseFlatten.js index 9a7f6d706..6386ab2a8 100644 --- a/.internal/baseFlatten.js +++ b/.internal/baseFlatten.js @@ -1,5 +1,5 @@ -import arrayPush from './.internal/arrayPush.js'; -import isFlattenable from './.internal/isFlattenable.js'; +import arrayPush from './arrayPush.js'; +import isFlattenable from './isFlattenable.js'; /** * The base implementation of `flatten` with support for restricting flattening. diff --git a/.internal/baseFor.js b/.internal/baseFor.js index 90b01249d..e7c00782f 100644 --- a/.internal/baseFor.js +++ b/.internal/baseFor.js @@ -1,4 +1,4 @@ -import createBaseFor from './.internal/createBaseFor.js'; +import createBaseFor from './createBaseFor.js'; /** * The base implementation of `baseForOwn` which iterates over `object` diff --git a/.internal/baseForOwn.js b/.internal/baseForOwn.js index 77e8d6e5a..7fd08514c 100644 --- a/.internal/baseForOwn.js +++ b/.internal/baseForOwn.js @@ -1,5 +1,5 @@ -import baseFor from './.internal/baseFor.js'; -import keys from './keys.js'; +import baseFor from './baseFor.js'; +import keys from '../keys.js'; /** * The base implementation of `forOwn`. diff --git a/.internal/baseForOwnRight.js b/.internal/baseForOwnRight.js index 098b0d132..4b8d5eeb2 100644 --- a/.internal/baseForOwnRight.js +++ b/.internal/baseForOwnRight.js @@ -1,5 +1,5 @@ -import baseForRight from './.internal/baseForRight.js'; -import keys from './keys.js'; +import baseForRight from './baseForRight.js'; +import keys from '../keys.js'; /** * The base implementation of `forOwnRight`. diff --git a/.internal/baseForRight.js b/.internal/baseForRight.js index 5e92fcf6b..9bcbcd3a2 100644 --- a/.internal/baseForRight.js +++ b/.internal/baseForRight.js @@ -1,4 +1,4 @@ -import createBaseFor from './.internal/createBaseFor.js'; +import createBaseFor from './createBaseFor.js'; /** * This function is like `baseFor` except that it iterates over properties diff --git a/.internal/baseFunctions.js b/.internal/baseFunctions.js index 50b829b17..215345f81 100644 --- a/.internal/baseFunctions.js +++ b/.internal/baseFunctions.js @@ -1,5 +1,5 @@ -import arrayFilter from './.internal/arrayFilter.js'; -import isFunction from './isFunction.js'; +import arrayFilter from './arrayFilter.js'; +import isFunction from '../isFunction.js'; /** * The base implementation of `functions` which creates an array of diff --git a/.internal/baseGet.js b/.internal/baseGet.js index d5ec75896..315fdf810 100644 --- a/.internal/baseGet.js +++ b/.internal/baseGet.js @@ -1,5 +1,5 @@ -import castPath from './.internal/castPath.js'; -import toKey from './.internal/toKey.js'; +import castPath from './castPath.js'; +import toKey from './toKey.js'; /** * The base implementation of `get` without support for default values. diff --git a/.internal/baseGetTag.js b/.internal/baseGetTag.js index 2294b0acf..8cce468f5 100644 --- a/.internal/baseGetTag.js +++ b/.internal/baseGetTag.js @@ -1,5 +1,5 @@ -import getRawTag from './.internal/getRawTag.js'; -import objectToString from './.internal/objectToString.js'; +import getRawTag from './getRawTag.js'; +import objectToString from './objectToString.js'; /** `Object#toString` result references. */ const nullTag = '[object Null]'; diff --git a/.internal/baseIndexOf.js b/.internal/baseIndexOf.js index 78bcf202f..8fab57799 100644 --- a/.internal/baseIndexOf.js +++ b/.internal/baseIndexOf.js @@ -1,6 +1,6 @@ -import baseFindIndex from './.internal/baseFindIndex.js'; -import baseIsNaN from './.internal/baseIsNaN.js'; -import strictIndexOf from './.internal/strictIndexOf.js'; +import baseFindIndex from './baseFindIndex.js'; +import baseIsNaN from './baseIsNaN.js'; +import strictIndexOf from './strictIndexOf.js'; /** * The base implementation of `indexOf` without `fromIndex` bounds checks. diff --git a/.internal/baseIntersection.js b/.internal/baseIntersection.js index a38a7f4fa..d4763a478 100644 --- a/.internal/baseIntersection.js +++ b/.internal/baseIntersection.js @@ -1,8 +1,8 @@ -import SetCache from './.internal/SetCache.js'; -import arrayIncludes from './.internal/arrayIncludes.js'; -import arrayIncludesWith from './.internal/arrayIncludesWith.js'; -import arrayMap from './.internal/arrayMap.js'; -import cacheHas from './.internal/cacheHas.js'; +import SetCache from './SetCache.js'; +import arrayIncludes from './arrayIncludes.js'; +import arrayIncludesWith from './arrayIncludesWith.js'; +import arrayMap from './arrayMap.js'; +import cacheHas from './cacheHas.js'; /* Built-in method references for those with the same name as other `lodash` methods. */ const nativeMin = Math.min; diff --git a/.internal/baseInverter.js b/.internal/baseInverter.js index cf775ec5f..0e43f1f04 100644 --- a/.internal/baseInverter.js +++ b/.internal/baseInverter.js @@ -1,4 +1,4 @@ -import baseForOwn from './.internal/baseForOwn.js'; +import baseForOwn from './baseForOwn.js'; /** * The base implementation of `invert` and `invertBy` which inverts diff --git a/.internal/baseInvoke.js b/.internal/baseInvoke.js index 96c7cfeef..ffcfce2f5 100644 --- a/.internal/baseInvoke.js +++ b/.internal/baseInvoke.js @@ -1,8 +1,8 @@ -import apply from './.internal/apply.js'; -import castPath from './.internal/castPath.js'; -import last from './last.js'; -import parent from './.internal/parent.js'; -import toKey from './.internal/toKey.js'; +import apply from './apply.js'; +import castPath from './castPath.js'; +import last from '../last.js'; +import parent from './parent.js'; +import toKey from './toKey.js'; /** * The base implementation of `invoke` without support for individual diff --git a/.internal/baseIsEqual.js b/.internal/baseIsEqual.js index a758c2c83..c1e7270c3 100644 --- a/.internal/baseIsEqual.js +++ b/.internal/baseIsEqual.js @@ -1,5 +1,5 @@ -import baseIsEqualDeep from './.internal/baseIsEqualDeep.js'; -import isObjectLike from './isObjectLike.js'; +import baseIsEqualDeep from './baseIsEqualDeep.js'; +import isObjectLike from '../isObjectLike.js'; /** * The base implementation of `isEqual` which supports partial comparisons diff --git a/.internal/baseIsEqualDeep.js b/.internal/baseIsEqualDeep.js index 0ba23bc36..210e5a8e6 100644 --- a/.internal/baseIsEqualDeep.js +++ b/.internal/baseIsEqualDeep.js @@ -1,10 +1,10 @@ -import Stack from './.internal/Stack.js'; -import equalArrays from './.internal/equalArrays.js'; -import equalByTag from './.internal/equalByTag.js'; -import equalObjects from './.internal/equalObjects.js'; -import getTag from './.internal/getTag.js'; -import isBuffer from './isBuffer.js'; -import isTypedArray from './isTypedArray.js'; +import Stack from './Stack.js'; +import equalArrays from './equalArrays.js'; +import equalByTag from './equalByTag.js'; +import equalObjects from './equalObjects.js'; +import getTag from './getTag.js'; +import isBuffer from '../isBuffer.js'; +import isTypedArray from '../isTypedArray.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/baseIsMatch.js b/.internal/baseIsMatch.js index ffb91b96e..229ef2a32 100644 --- a/.internal/baseIsMatch.js +++ b/.internal/baseIsMatch.js @@ -1,5 +1,5 @@ -import Stack from './.internal/Stack.js'; -import baseIsEqual from './.internal/baseIsEqual.js'; +import Stack from './Stack.js'; +import baseIsEqual from './baseIsEqual.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/baseKeys.js b/.internal/baseKeys.js index 48d40b860..7f9f55db6 100644 --- a/.internal/baseKeys.js +++ b/.internal/baseKeys.js @@ -1,5 +1,5 @@ -import isPrototype from './.internal/isPrototype.js'; -import nativeKeys from './.internal/nativeKeys.js'; +import isPrototype from './isPrototype.js'; +import nativeKeys from './nativeKeys.js'; /** Used to check objects for own properties. */ const hasOwnProperty = Object.prototype.hasOwnProperty; diff --git a/.internal/baseKeysIn.js b/.internal/baseKeysIn.js index 436df9ee0..62a9b9d6c 100644 --- a/.internal/baseKeysIn.js +++ b/.internal/baseKeysIn.js @@ -1,6 +1,6 @@ -import isObject from './isObject.js'; -import isPrototype from './.internal/isPrototype.js'; -import nativeKeysIn from './.internal/nativeKeysIn.js'; +import isObject from '../isObject.js'; +import isPrototype from './isPrototype.js'; +import nativeKeysIn from './nativeKeysIn.js'; /** Used to check objects for own properties. */ const hasOwnProperty = Object.prototype.hasOwnProperty; diff --git a/.internal/baseMap.js b/.internal/baseMap.js index 81685d312..dd984ec65 100644 --- a/.internal/baseMap.js +++ b/.internal/baseMap.js @@ -1,5 +1,5 @@ -import baseEach from './.internal/baseEach.js'; -import isArrayLike from './isArrayLike.js'; +import baseEach from './baseEach.js'; +import isArrayLike from '../isArrayLike.js'; /** * The base implementation of `map`. diff --git a/.internal/baseMatches.js b/.internal/baseMatches.js index b417d9e46..26649911e 100644 --- a/.internal/baseMatches.js +++ b/.internal/baseMatches.js @@ -1,6 +1,6 @@ -import baseIsMatch from './.internal/baseIsMatch.js'; -import getMatchData from './.internal/getMatchData.js'; -import matchesStrictComparable from './.internal/matchesStrictComparable.js'; +import baseIsMatch from './baseIsMatch.js'; +import getMatchData from './getMatchData.js'; +import matchesStrictComparable from './matchesStrictComparable.js'; /** * The base implementation of `matches` which doesn't clone `source`. diff --git a/.internal/baseMatchesProperty.js b/.internal/baseMatchesProperty.js index 4dd4064d8..af6064dd4 100644 --- a/.internal/baseMatchesProperty.js +++ b/.internal/baseMatchesProperty.js @@ -1,10 +1,10 @@ -import baseIsEqual from './.internal/baseIsEqual.js'; -import get from './get.js'; -import hasIn from './hasIn.js'; -import isKey from './.internal/isKey.js'; -import isStrictComparable from './.internal/isStrictComparable.js'; -import matchesStrictComparable from './.internal/matchesStrictComparable.js'; -import toKey from './.internal/toKey.js'; +import baseIsEqual from './baseIsEqual.js'; +import get from '../get.js'; +import hasIn from '../hasIn.js'; +import isKey from './isKey.js'; +import isStrictComparable from './isStrictComparable.js'; +import matchesStrictComparable from './matchesStrictComparable.js'; +import toKey from './toKey.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/baseMerge.js b/.internal/baseMerge.js index daba027e8..ec5b0b07c 100644 --- a/.internal/baseMerge.js +++ b/.internal/baseMerge.js @@ -1,9 +1,9 @@ -import Stack from './.internal/Stack.js'; -import assignMergeValue from './.internal/assignMergeValue.js'; -import baseFor from './.internal/baseFor.js'; -import baseMergeDeep from './.internal/baseMergeDeep.js'; -import isObject from './isObject.js'; -import keysIn from './keysIn.js'; +import Stack from './Stack.js'; +import assignMergeValue from './assignMergeValue.js'; +import baseFor from './baseFor.js'; +import baseMergeDeep from './baseMergeDeep.js'; +import isObject from '../isObject.js'; +import keysIn from '../keysIn.js'; /** * The base implementation of `merge` without support for multiple sources. diff --git a/.internal/baseMergeDeep.js b/.internal/baseMergeDeep.js index de792055e..1246be21e 100644 --- a/.internal/baseMergeDeep.js +++ b/.internal/baseMergeDeep.js @@ -1,16 +1,16 @@ -import assignMergeValue from './.internal/assignMergeValue.js'; -import cloneBuffer from './.internal/cloneBuffer.js'; -import cloneTypedArray from './.internal/cloneTypedArray.js'; -import copyArray from './.internal/copyArray.js'; -import initCloneObject from './.internal/initCloneObject.js'; -import isArguments from './isArguments.js'; -import isArrayLikeObject from './isArrayLikeObject.js'; -import isBuffer from './isBuffer.js'; -import isFunction from './isFunction.js'; -import isObject from './isObject.js'; -import isPlainObject from './isPlainObject.js'; -import isTypedArray from './isTypedArray.js'; -import toPlainObject from './toPlainObject.js'; +import assignMergeValue from './assignMergeValue.js'; +import cloneBuffer from './cloneBuffer.js'; +import cloneTypedArray from './cloneTypedArray.js'; +import copyArray from './copyArray.js'; +import initCloneObject from './initCloneObject.js'; +import isArguments from '../isArguments.js'; +import isArrayLikeObject from '../isArrayLikeObject.js'; +import isBuffer from '../isBuffer.js'; +import isFunction from '../isFunction.js'; +import isObject from '../isObject.js'; +import isPlainObject from '../isPlainObject.js'; +import isTypedArray from '../isTypedArray.js'; +import toPlainObject from '../toPlainObject.js'; /** * A specialized version of `baseMerge` for arrays and objects which performs diff --git a/.internal/baseNth.js b/.internal/baseNth.js index 568016a43..282f9c291 100644 --- a/.internal/baseNth.js +++ b/.internal/baseNth.js @@ -1,4 +1,4 @@ -import isIndex from './.internal/isIndex.js'; +import isIndex from './isIndex.js'; /** * The base implementation of `nth` which doesn't coerce arguments. diff --git a/.internal/baseOrderBy.js b/.internal/baseOrderBy.js index ed8f21fee..f950b5dec 100644 --- a/.internal/baseOrderBy.js +++ b/.internal/baseOrderBy.js @@ -1,8 +1,8 @@ -import arrayMap from './.internal/arrayMap.js'; -import baseMap from './.internal/baseMap.js'; -import baseSortBy from './.internal/baseSortBy.js'; -import compareMultiple from './.internal/compareMultiple.js'; -import identity from './identity.js'; +import arrayMap from './arrayMap.js'; +import baseMap from './baseMap.js'; +import baseSortBy from './baseSortBy.js'; +import compareMultiple from './compareMultiple.js'; +import identity from '../identity.js'; /** * The base implementation of `orderBy` without param guards. diff --git a/.internal/basePick.js b/.internal/basePick.js index 5d1ddc446..a6c46e0a5 100644 --- a/.internal/basePick.js +++ b/.internal/basePick.js @@ -1,5 +1,5 @@ -import basePickBy from './.internal/basePickBy.js'; -import hasIn from './hasIn.js'; +import basePickBy from './basePickBy.js'; +import hasIn from '../hasIn.js'; /** * The base implementation of `pick` without support for individual diff --git a/.internal/basePickBy.js b/.internal/basePickBy.js index 45d781945..602960950 100644 --- a/.internal/basePickBy.js +++ b/.internal/basePickBy.js @@ -1,6 +1,6 @@ -import baseGet from './.internal/baseGet.js'; -import baseSet from './.internal/baseSet.js'; -import castPath from './.internal/castPath.js'; +import baseGet from './baseGet.js'; +import baseSet from './baseSet.js'; +import castPath from './castPath.js'; /** * The base implementation of `pickBy`. diff --git a/.internal/basePropertyDeep.js b/.internal/basePropertyDeep.js index 0129430d1..68c690bb1 100644 --- a/.internal/basePropertyDeep.js +++ b/.internal/basePropertyDeep.js @@ -1,4 +1,4 @@ -import baseGet from './.internal/baseGet.js'; +import baseGet from './baseGet.js'; /** * A specialized version of `baseProperty` which supports deep paths. diff --git a/.internal/basePullAll.js b/.internal/basePullAll.js index 7d7341c63..49beec28c 100644 --- a/.internal/basePullAll.js +++ b/.internal/basePullAll.js @@ -1,7 +1,7 @@ -import arrayMap from './.internal/arrayMap.js'; -import baseIndexOf from './.internal/baseIndexOf.js'; -import baseIndexOfWith from './.internal/baseIndexOfWith.js'; -import copyArray from './.internal/copyArray.js'; +import arrayMap from './arrayMap.js'; +import baseIndexOf from './baseIndexOf.js'; +import baseIndexOfWith from './baseIndexOfWith.js'; +import copyArray from './copyArray.js'; /** Built-in value references. */ const splice = Array.prototype.splice; diff --git a/.internal/basePullAt.js b/.internal/basePullAt.js index 1ea2cf112..eed829ea6 100644 --- a/.internal/basePullAt.js +++ b/.internal/basePullAt.js @@ -1,5 +1,5 @@ -import baseUnset from './.internal/baseUnset.js'; -import isIndex from './.internal/isIndex.js'; +import baseUnset from './baseUnset.js'; +import isIndex from './isIndex.js'; /** Built-in value references. */ const splice = Array.prototype.splice; diff --git a/.internal/baseSample.js b/.internal/baseSample.js index 6db6b2cbc..6144a464b 100644 --- a/.internal/baseSample.js +++ b/.internal/baseSample.js @@ -1,5 +1,5 @@ -import arraySample from './.internal/arraySample.js'; -import values from './values.js'; +import arraySample from './arraySample.js'; +import values from '../values.js'; /** * The base implementation of `sample`. diff --git a/.internal/baseSampleSize.js b/.internal/baseSampleSize.js index d08f20ffd..babb51b89 100644 --- a/.internal/baseSampleSize.js +++ b/.internal/baseSampleSize.js @@ -1,6 +1,6 @@ -import baseClamp from './.internal/baseClamp.js'; -import shuffleSelf from './.internal/shuffleSelf.js'; -import values from './values.js'; +import baseClamp from './baseClamp.js'; +import shuffleSelf from './shuffleSelf.js'; +import values from '../values.js'; /** * The base implementation of `sampleSize` without param guards. diff --git a/.internal/baseSet.js b/.internal/baseSet.js index 0aba76944..1cd007d31 100644 --- a/.internal/baseSet.js +++ b/.internal/baseSet.js @@ -1,8 +1,8 @@ -import assignValue from './.internal/assignValue.js'; -import castPath from './.internal/castPath.js'; -import isIndex from './.internal/isIndex.js'; -import isObject from './isObject.js'; -import toKey from './.internal/toKey.js'; +import assignValue from './assignValue.js'; +import castPath from './castPath.js'; +import isIndex from './isIndex.js'; +import isObject from '../isObject.js'; +import toKey from './toKey.js'; /** * The base implementation of `set`. diff --git a/.internal/baseSetToString.js b/.internal/baseSetToString.js index 1b0972e19..7c9890c13 100644 --- a/.internal/baseSetToString.js +++ b/.internal/baseSetToString.js @@ -1,5 +1,5 @@ -import constant from './constant.js'; -import identity from './identity.js'; +import constant from '../constant.js'; +import identity from '../identity.js'; /** * The base implementation of `setToString` without support for hot loop shorting. diff --git a/.internal/baseShuffle.js b/.internal/baseShuffle.js index 37250667c..4dc792ce0 100644 --- a/.internal/baseShuffle.js +++ b/.internal/baseShuffle.js @@ -1,5 +1,5 @@ -import shuffleSelf from './.internal/shuffleSelf.js'; -import values from './values.js'; +import shuffleSelf from './shuffleSelf.js'; +import values from '../values.js'; /** * The base implementation of `shuffle`. diff --git a/.internal/baseSome.js b/.internal/baseSome.js index 9ed117c97..553ba7815 100644 --- a/.internal/baseSome.js +++ b/.internal/baseSome.js @@ -1,4 +1,4 @@ -import baseEach from './.internal/baseEach.js'; +import baseEach from './baseEach.js'; /** * The base implementation of `some`. diff --git a/.internal/baseSortedIndex.js b/.internal/baseSortedIndex.js index 5d8e12ba7..65d776946 100644 --- a/.internal/baseSortedIndex.js +++ b/.internal/baseSortedIndex.js @@ -1,6 +1,6 @@ -import baseSortedIndexBy from './.internal/baseSortedIndexBy.js'; -import identity from './identity.js'; -import isSymbol from './isSymbol.js'; +import baseSortedIndexBy from './baseSortedIndexBy.js'; +import identity from '../identity.js'; +import isSymbol from '../isSymbol.js'; /** Used as references for the maximum length and index of an array. */ const MAX_ARRAY_LENGTH = 4294967295; diff --git a/.internal/baseSortedIndexBy.js b/.internal/baseSortedIndexBy.js index 9d019006a..d9912ddb6 100644 --- a/.internal/baseSortedIndexBy.js +++ b/.internal/baseSortedIndexBy.js @@ -1,4 +1,4 @@ -import isSymbol from './isSymbol.js'; +import isSymbol from '../isSymbol.js'; /** Used as references for the maximum length and index of an array. */ const MAX_ARRAY_LENGTH = 4294967295; diff --git a/.internal/baseSortedUniq.js b/.internal/baseSortedUniq.js index 8e0b549f1..b7017caeb 100644 --- a/.internal/baseSortedUniq.js +++ b/.internal/baseSortedUniq.js @@ -1,4 +1,4 @@ -import eq from './eq.js'; +import eq from '../eq.js'; /** * The base implementation of `sortedUniq` and `sortedUniqBy`. diff --git a/.internal/baseToNumber.js b/.internal/baseToNumber.js index 70ab3034d..d5b674005 100644 --- a/.internal/baseToNumber.js +++ b/.internal/baseToNumber.js @@ -1,4 +1,4 @@ -import isSymbol from './isSymbol.js'; +import isSymbol from '../isSymbol.js'; /** Used as references for various `Number` constants. */ const NAN = 0 / 0; diff --git a/.internal/baseToPairs.js b/.internal/baseToPairs.js index 93fb97ab0..481387753 100644 --- a/.internal/baseToPairs.js +++ b/.internal/baseToPairs.js @@ -1,4 +1,4 @@ -import arrayMap from './.internal/arrayMap.js'; +import arrayMap from './arrayMap.js'; /** * The base implementation of `toPairs` and `toPairsIn` which creates an array diff --git a/.internal/baseToString.js b/.internal/baseToString.js index 8fb4303b5..2e0a89811 100644 --- a/.internal/baseToString.js +++ b/.internal/baseToString.js @@ -1,5 +1,5 @@ -import arrayMap from './.internal/arrayMap.js'; -import isSymbol from './isSymbol.js'; +import arrayMap from './arrayMap.js'; +import isSymbol from '../isSymbol.js'; /** Used as references for various `Number` constants. */ const INFINITY = 1 / 0; diff --git a/.internal/baseUniq.js b/.internal/baseUniq.js index d93c4b6b0..287da4d46 100644 --- a/.internal/baseUniq.js +++ b/.internal/baseUniq.js @@ -1,9 +1,9 @@ -import SetCache from './.internal/SetCache.js'; -import arrayIncludes from './.internal/arrayIncludes.js'; -import arrayIncludesWith from './.internal/arrayIncludesWith.js'; -import cacheHas from './.internal/cacheHas.js'; -import createSet from './.internal/createSet.js'; -import setToArray from './.internal/setToArray.js'; +import SetCache from './SetCache.js'; +import arrayIncludes from './arrayIncludes.js'; +import arrayIncludesWith from './arrayIncludesWith.js'; +import cacheHas from './cacheHas.js'; +import createSet from './createSet.js'; +import setToArray from './setToArray.js'; /** Used as the size to enable large array optimizations. */ const LARGE_ARRAY_SIZE = 200; diff --git a/.internal/baseUnset.js b/.internal/baseUnset.js index c931ca758..ff3d1c491 100644 --- a/.internal/baseUnset.js +++ b/.internal/baseUnset.js @@ -1,7 +1,7 @@ -import castPath from './.internal/castPath.js'; -import last from './last.js'; -import parent from './.internal/parent.js'; -import toKey from './.internal/toKey.js'; +import castPath from './castPath.js'; +import last from '../last.js'; +import parent from './parent.js'; +import toKey from './toKey.js'; /** * The base implementation of `unset`. diff --git a/.internal/baseUpdate.js b/.internal/baseUpdate.js index 64c246e58..57805f6c4 100644 --- a/.internal/baseUpdate.js +++ b/.internal/baseUpdate.js @@ -1,5 +1,5 @@ -import baseGet from './.internal/baseGet.js'; -import baseSet from './.internal/baseSet.js'; +import baseGet from './baseGet.js'; +import baseSet from './baseSet.js'; /** * The base implementation of `update`. diff --git a/.internal/baseValues.js b/.internal/baseValues.js index 06e8369cc..f7039043f 100644 --- a/.internal/baseValues.js +++ b/.internal/baseValues.js @@ -1,4 +1,4 @@ -import arrayMap from './.internal/arrayMap.js'; +import arrayMap from './arrayMap.js'; /** * The base implementation of `values` and `valuesIn` which creates an diff --git a/.internal/baseWhile.js b/.internal/baseWhile.js index 6c6fe1863..db489bc67 100644 --- a/.internal/baseWhile.js +++ b/.internal/baseWhile.js @@ -1,4 +1,4 @@ -import baseSlice from './.internal/baseSlice.js'; +import baseSlice from './baseSlice.js'; /** * The base implementation of methods like `dropWhile` and `takeWhile`. diff --git a/.internal/baseWrapperValue.js b/.internal/baseWrapperValue.js index b931bbe7c..cc7e623ef 100644 --- a/.internal/baseWrapperValue.js +++ b/.internal/baseWrapperValue.js @@ -1,6 +1,6 @@ -import LazyWrapper from './.internal/LazyWrapper.js'; -import arrayPush from './.internal/arrayPush.js'; -import arrayReduce from './.internal/arrayReduce.js'; +import LazyWrapper from './LazyWrapper.js'; +import arrayPush from './arrayPush.js'; +import arrayReduce from './arrayReduce.js'; /** * The base implementation of `wrapperValue` which returns the result of diff --git a/.internal/baseXor.js b/.internal/baseXor.js index 28103f553..d74d0f7de 100644 --- a/.internal/baseXor.js +++ b/.internal/baseXor.js @@ -1,6 +1,6 @@ -import baseDifference from './.internal/baseDifference.js'; -import baseFlatten from './.internal/baseFlatten.js'; -import baseUniq from './.internal/baseUniq.js'; +import baseDifference from './baseDifference.js'; +import baseFlatten from './baseFlatten.js'; +import baseUniq from './baseUniq.js'; /** * The base implementation of methods like `xor` which accepts an array of diff --git a/.internal/castArrayLikeObject.js b/.internal/castArrayLikeObject.js index 040d3e5eb..8d988abf7 100644 --- a/.internal/castArrayLikeObject.js +++ b/.internal/castArrayLikeObject.js @@ -1,4 +1,4 @@ -import isArrayLikeObject from './isArrayLikeObject.js'; +import isArrayLikeObject from '../isArrayLikeObject.js'; /** * Casts `value` to an empty array if it's not an array like object. diff --git a/.internal/castPath.js b/.internal/castPath.js index 9937b5dff..8d08ff913 100644 --- a/.internal/castPath.js +++ b/.internal/castPath.js @@ -1,6 +1,6 @@ -import isKey from './.internal/isKey.js'; -import stringToPath from './.internal/stringToPath.js'; -import toString from './toString.js'; +import isKey from './isKey.js'; +import stringToPath from './stringToPath.js'; +import toString from '../toString.js'; /** * Casts `value` to a path array if it's not one. diff --git a/.internal/castSlice.js b/.internal/castSlice.js index 24c1d261f..0ba3c4f3b 100644 --- a/.internal/castSlice.js +++ b/.internal/castSlice.js @@ -1,4 +1,4 @@ -import baseSlice from './.internal/baseSlice.js'; +import baseSlice from './baseSlice.js'; /** * Casts `array` to a slice if it's needed. diff --git a/.internal/charsEndIndex.js b/.internal/charsEndIndex.js index 06834054a..fc5549fff 100644 --- a/.internal/charsEndIndex.js +++ b/.internal/charsEndIndex.js @@ -1,4 +1,4 @@ -import baseIndexOf from './.internal/baseIndexOf.js'; +import baseIndexOf from './baseIndexOf.js'; /** * Used by `trim` and `trimEnd` to get the index of the last string symbol diff --git a/.internal/charsStartIndex.js b/.internal/charsStartIndex.js index b7975a19f..75a9726ef 100644 --- a/.internal/charsStartIndex.js +++ b/.internal/charsStartIndex.js @@ -1,4 +1,4 @@ -import baseIndexOf from './.internal/baseIndexOf.js'; +import baseIndexOf from './baseIndexOf.js'; /** * Used by `trim` and `trimStart` to get the index of the first string symbol diff --git a/.internal/cloneBuffer.js b/.internal/cloneBuffer.js index 3760bced6..e6a040c3c 100644 --- a/.internal/cloneBuffer.js +++ b/.internal/cloneBuffer.js @@ -1,4 +1,4 @@ -import root from './.internal/root.js'; +import root from './root.js'; /** Detect free variable `exports`. */ const freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; diff --git a/.internal/cloneDataView.js b/.internal/cloneDataView.js index 405d12af6..0667a55b1 100644 --- a/.internal/cloneDataView.js +++ b/.internal/cloneDataView.js @@ -1,4 +1,4 @@ -import cloneArrayBuffer from './.internal/cloneArrayBuffer.js'; +import cloneArrayBuffer from './cloneArrayBuffer.js'; /** * Creates a clone of `dataView`. diff --git a/.internal/cloneMap.js b/.internal/cloneMap.js index d1b8003a6..66acd32f2 100644 --- a/.internal/cloneMap.js +++ b/.internal/cloneMap.js @@ -1,6 +1,6 @@ -import addMapEntry from './.internal/addMapEntry.js'; -import arrayReduce from './.internal/arrayReduce.js'; -import mapToArray from './.internal/mapToArray.js'; +import addMapEntry from './addMapEntry.js'; +import arrayReduce from './arrayReduce.js'; +import mapToArray from './mapToArray.js'; /** Used to compose bitmasks for cloning. */ const CLONE_DEEP_FLAG = 1; diff --git a/.internal/cloneSet.js b/.internal/cloneSet.js index 4983f9053..e5d7bb2e6 100644 --- a/.internal/cloneSet.js +++ b/.internal/cloneSet.js @@ -1,6 +1,6 @@ -import addSetEntry from './.internal/addSetEntry.js'; -import arrayReduce from './.internal/arrayReduce.js'; -import setToArray from './.internal/setToArray.js'; +import addSetEntry from './addSetEntry.js'; +import arrayReduce from './arrayReduce.js'; +import setToArray from './setToArray.js'; /** Used to compose bitmasks for cloning. */ const CLONE_DEEP_FLAG = 1; diff --git a/.internal/cloneTypedArray.js b/.internal/cloneTypedArray.js index db99869cd..4cd6e1803 100644 --- a/.internal/cloneTypedArray.js +++ b/.internal/cloneTypedArray.js @@ -1,4 +1,4 @@ -import cloneArrayBuffer from './.internal/cloneArrayBuffer.js'; +import cloneArrayBuffer from './cloneArrayBuffer.js'; /** * Creates a clone of `typedArray`. diff --git a/.internal/compareAscending.js b/.internal/compareAscending.js index f297a0827..1d1e87b79 100644 --- a/.internal/compareAscending.js +++ b/.internal/compareAscending.js @@ -1,4 +1,4 @@ -import isSymbol from './isSymbol.js'; +import isSymbol from '../isSymbol.js'; /** * Compares values to sort them in ascending order. diff --git a/.internal/compareMultiple.js b/.internal/compareMultiple.js index ecd16bda1..f14e180f7 100644 --- a/.internal/compareMultiple.js +++ b/.internal/compareMultiple.js @@ -1,4 +1,4 @@ -import compareAscending from './.internal/compareAscending.js'; +import compareAscending from './compareAscending.js'; /** * Used by `orderBy` to compare multiple properties of a value to another diff --git a/.internal/copyObject.js b/.internal/copyObject.js index e1f757aae..beb9473eb 100644 --- a/.internal/copyObject.js +++ b/.internal/copyObject.js @@ -1,5 +1,5 @@ -import assignValue from './.internal/assignValue.js'; -import baseAssignValue from './.internal/baseAssignValue.js'; +import assignValue from './assignValue.js'; +import baseAssignValue from './baseAssignValue.js'; /** * Copies properties of `source` to `object`. diff --git a/.internal/copySymbols.js b/.internal/copySymbols.js index 50926cc1d..4151833ff 100644 --- a/.internal/copySymbols.js +++ b/.internal/copySymbols.js @@ -1,5 +1,5 @@ -import copyObject from './.internal/copyObject.js'; -import getSymbols from './.internal/getSymbols.js'; +import copyObject from './copyObject.js'; +import getSymbols from './getSymbols.js'; /** * Copies own symbols of `source` to `object`. diff --git a/.internal/copySymbolsIn.js b/.internal/copySymbolsIn.js index 31e83e0b5..5cb0179b7 100644 --- a/.internal/copySymbolsIn.js +++ b/.internal/copySymbolsIn.js @@ -1,5 +1,5 @@ -import copyObject from './.internal/copyObject.js'; -import getSymbolsIn from './.internal/getSymbolsIn.js'; +import copyObject from './copyObject.js'; +import getSymbolsIn from './getSymbolsIn.js'; /** * Copies own and inherited symbols of `source` to `object`. diff --git a/.internal/createCaseFirst.js b/.internal/createCaseFirst.js index 33c216b0e..632fd9dfc 100644 --- a/.internal/createCaseFirst.js +++ b/.internal/createCaseFirst.js @@ -1,7 +1,7 @@ -import castSlice from './.internal/castSlice.js'; -import hasUnicode from './.internal/hasUnicode.js'; -import stringToArray from './.internal/stringToArray.js'; -import toString from './toString.js'; +import castSlice from './castSlice.js'; +import hasUnicode from './hasUnicode.js'; +import stringToArray from './stringToArray.js'; +import toString from '../toString.js'; /** * Creates a function like `lowerFirst`. diff --git a/.internal/createCompounder.js b/.internal/createCompounder.js index a90c4ae5b..d0af9b9b1 100644 --- a/.internal/createCompounder.js +++ b/.internal/createCompounder.js @@ -1,6 +1,6 @@ -import arrayReduce from './.internal/arrayReduce.js'; -import deburr from './deburr.js'; -import words from './words.js'; +import arrayReduce from './arrayReduce.js'; +import deburr from '../deburr.js'; +import words from '../words.js'; /** Used to compose unicode capture groups. */ const rsApos = "['\u2019]"; diff --git a/.internal/createCtor.js b/.internal/createCtor.js index a3d3f8913..8e4b82c81 100644 --- a/.internal/createCtor.js +++ b/.internal/createCtor.js @@ -1,5 +1,5 @@ -import baseCreate from './.internal/baseCreate.js'; -import isObject from './isObject.js'; +import baseCreate from './baseCreate.js'; +import isObject from '../isObject.js'; /** * Creates a function that produces an instance of `Ctor` regardless of diff --git a/.internal/createMathOperation.js b/.internal/createMathOperation.js index f2549e39c..bd035cd20 100644 --- a/.internal/createMathOperation.js +++ b/.internal/createMathOperation.js @@ -1,5 +1,5 @@ -import baseToNumber from './.internal/baseToNumber.js'; -import baseToString from './.internal/baseToString.js'; +import baseToNumber from './baseToNumber.js'; +import baseToString from './baseToString.js'; /** * Creates a function that performs a mathematical operation on two values. diff --git a/.internal/createPadding.js b/.internal/createPadding.js index a6c6b8687..f2ffb2ed2 100644 --- a/.internal/createPadding.js +++ b/.internal/createPadding.js @@ -1,9 +1,9 @@ -import baseRepeat from './.internal/baseRepeat.js'; -import baseToString from './.internal/baseToString.js'; -import castSlice from './.internal/castSlice.js'; -import hasUnicode from './.internal/hasUnicode.js'; -import stringSize from './.internal/stringSize.js'; -import stringToArray from './.internal/stringToArray.js'; +import baseRepeat from './baseRepeat.js'; +import baseToString from './baseToString.js'; +import castSlice from './castSlice.js'; +import hasUnicode from './hasUnicode.js'; +import stringSize from './stringSize.js'; +import stringToArray from './stringToArray.js'; /* Built-in method references for those with the same name as other `lodash` methods. */ const nativeCeil = Math.ceil; diff --git a/.internal/createRange.js b/.internal/createRange.js index ec646a2e5..92418ab0a 100644 --- a/.internal/createRange.js +++ b/.internal/createRange.js @@ -1,6 +1,6 @@ -import baseRange from './.internal/baseRange.js'; -import isIterateeCall from './.internal/isIterateeCall.js'; -import toFinite from './toFinite.js'; +import baseRange from './baseRange.js'; +import isIterateeCall from './isIterateeCall.js'; +import toFinite from '../toFinite.js'; /** * Creates a `range` or `rangeRight` function. diff --git a/.internal/createRound.js b/.internal/createRound.js index caf020254..de2fb5e6c 100644 --- a/.internal/createRound.js +++ b/.internal/createRound.js @@ -1,6 +1,6 @@ -import toInteger from './toInteger.js'; -import toNumber from './toNumber.js'; -import toString from './toString.js'; +import toInteger from '../toInteger.js'; +import toNumber from '../toNumber.js'; +import toString from '../toString.js'; /** * Creates a function like `round`. diff --git a/.internal/createSet.js b/.internal/createSet.js index 7d5932060..e835c15e3 100644 --- a/.internal/createSet.js +++ b/.internal/createSet.js @@ -1,4 +1,4 @@ -import setToArray from './.internal/setToArray.js'; +import setToArray from './setToArray.js'; /** Used as references for various `Number` constants. */ const INFINITY = 1 / 0; diff --git a/.internal/customDefaultsAssignIn.js b/.internal/customDefaultsAssignIn.js index c1ec7da40..51abe80c7 100644 --- a/.internal/customDefaultsAssignIn.js +++ b/.internal/customDefaultsAssignIn.js @@ -1,4 +1,4 @@ -import eq from './eq.js'; +import eq from '../eq.js'; /** Used for built-in method references. */ const objectProto = Object.prototype; diff --git a/.internal/customDefaultsMerge.js b/.internal/customDefaultsMerge.js index 12f10c53e..5ebb41f29 100644 --- a/.internal/customDefaultsMerge.js +++ b/.internal/customDefaultsMerge.js @@ -1,5 +1,5 @@ -import baseMerge from './.internal/baseMerge.js'; -import isObject from './isObject.js'; +import baseMerge from './baseMerge.js'; +import isObject from '../isObject.js'; /** * Used by `defaultsDeep` to customize its `merge` use to merge source diff --git a/.internal/deburrLetter.js b/.internal/deburrLetter.js index 806f043a1..c477a0498 100644 --- a/.internal/deburrLetter.js +++ b/.internal/deburrLetter.js @@ -1,4 +1,4 @@ -import basePropertyOf from './.internal/basePropertyOf.js'; +import basePropertyOf from './basePropertyOf.js'; /** Used to map Latin Unicode letters to basic Latin letters. */ const deburredLetters = { diff --git a/.internal/equalArrays.js b/.internal/equalArrays.js index 0067f1e64..2e07a651a 100644 --- a/.internal/equalArrays.js +++ b/.internal/equalArrays.js @@ -1,6 +1,6 @@ -import SetCache from './.internal/SetCache.js'; -import arraySome from './.internal/arraySome.js'; -import cacheHas from './.internal/cacheHas.js'; +import SetCache from './SetCache.js'; +import arraySome from './arraySome.js'; +import cacheHas from './cacheHas.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/equalByTag.js b/.internal/equalByTag.js index 3a1fbb127..59a801006 100644 --- a/.internal/equalByTag.js +++ b/.internal/equalByTag.js @@ -1,7 +1,7 @@ -import eq from './eq.js'; -import equalArrays from './.internal/equalArrays.js'; -import mapToArray from './.internal/mapToArray.js'; -import setToArray from './.internal/setToArray.js'; +import eq from '../eq.js'; +import equalArrays from './equalArrays.js'; +import mapToArray from './mapToArray.js'; +import setToArray from './setToArray.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/equalObjects.js b/.internal/equalObjects.js index 9ba4cc59c..715046c0b 100644 --- a/.internal/equalObjects.js +++ b/.internal/equalObjects.js @@ -1,4 +1,4 @@ -import getAllKeys from './.internal/getAllKeys.js'; +import getAllKeys from './getAllKeys.js'; /** Used to compose bitmasks for value comparisons. */ const COMPARE_PARTIAL_FLAG = 1; diff --git a/.internal/getAllKeys.js b/.internal/getAllKeys.js index 1b7069dd5..f8965fb76 100644 --- a/.internal/getAllKeys.js +++ b/.internal/getAllKeys.js @@ -1,5 +1,5 @@ -import getSymbols from './.internal/getSymbols.js'; -import keys from './keys.js'; +import getSymbols from './getSymbols.js'; +import keys from '../keys.js'; /** * Creates an array of own enumerable property names and symbols of `object`. diff --git a/.internal/getAllKeysIn.js b/.internal/getAllKeysIn.js index 2a38a9543..d6219038e 100644 --- a/.internal/getAllKeysIn.js +++ b/.internal/getAllKeysIn.js @@ -1,5 +1,5 @@ -import getSymbolsIn from './.internal/getSymbolsIn.js'; -import keysIn from './keysIn.js'; +import getSymbolsIn from './getSymbolsIn.js'; +import keysIn from '../keysIn.js'; /** * Creates an array of own and inherited enumerable property names and diff --git a/.internal/getMatchData.js b/.internal/getMatchData.js index 2495df824..3d35d579b 100644 --- a/.internal/getMatchData.js +++ b/.internal/getMatchData.js @@ -1,5 +1,5 @@ -import isStrictComparable from './.internal/isStrictComparable.js'; -import keys from './keys.js'; +import isStrictComparable from './isStrictComparable.js'; +import keys from '../keys.js'; /** * Gets the property names, values, and compare flags of `object`. diff --git a/.internal/getSymbols.js b/.internal/getSymbols.js index df4966b8e..d3b22397f 100644 --- a/.internal/getSymbols.js +++ b/.internal/getSymbols.js @@ -1,5 +1,5 @@ -import arrayFilter from './.internal/arrayFilter.js'; -import stubArray from './stubArray.js'; +import arrayFilter from './arrayFilter.js'; +import stubArray from '../stubArray.js'; /** Built-in value references. */ const propertyIsEnumerable = Object.prototype.propertyIsEnumerable; diff --git a/.internal/getSymbolsIn.js b/.internal/getSymbolsIn.js index 25360dc46..14d568e5e 100644 --- a/.internal/getSymbolsIn.js +++ b/.internal/getSymbolsIn.js @@ -1,6 +1,6 @@ -import arrayPush from './.internal/arrayPush.js'; -import getSymbols from './.internal/getSymbols.js'; -import stubArray from './stubArray.js'; +import arrayPush from './arrayPush.js'; +import getSymbols from './getSymbols.js'; +import stubArray from '../stubArray.js'; /* Built-in method references for those with the same name as other `lodash` methods. */ const nativeGetSymbols = Object.getOwnPropertySymbols; diff --git a/.internal/getTag.js b/.internal/getTag.js index e1fbf56d6..3f292c9fd 100644 --- a/.internal/getTag.js +++ b/.internal/getTag.js @@ -1,5 +1,5 @@ -import baseGetTag from './.internal/baseGetTag.js'; -import toSource from './.internal/toSource.js'; +import baseGetTag from './baseGetTag.js'; +import toSource from './toSource.js'; /** `Object#toString` result references. */ const dataViewTag = '[object DataView]'; diff --git a/.internal/hasPath.js b/.internal/hasPath.js index 8662a9e18..3b3e7182b 100644 --- a/.internal/hasPath.js +++ b/.internal/hasPath.js @@ -1,8 +1,8 @@ -import castPath from './.internal/castPath.js'; -import isArguments from './isArguments.js'; -import isIndex from './.internal/isIndex.js'; -import isLength from './isLength.js'; -import toKey from './.internal/toKey.js'; +import castPath from './castPath.js'; +import isArguments from '../isArguments.js'; +import isIndex from './isIndex.js'; +import isLength from '../isLength.js'; +import toKey from './toKey.js'; /** * Checks if `path` exists on `object`. diff --git a/.internal/isFlattenable.js b/.internal/isFlattenable.js index 8392e0f63..945056cbc 100644 --- a/.internal/isFlattenable.js +++ b/.internal/isFlattenable.js @@ -1,4 +1,4 @@ -import isArguments from './isArguments.js'; +import isArguments from '../isArguments.js'; /** Built-in value reference. */ const spreadableSymbol = Symbol.isConcatSpreadable; diff --git a/.internal/isIterateeCall.js b/.internal/isIterateeCall.js index fc7ac8831..f67f3ca1f 100644 --- a/.internal/isIterateeCall.js +++ b/.internal/isIterateeCall.js @@ -1,7 +1,7 @@ -import eq from './eq.js'; -import isArrayLike from './isArrayLike.js'; -import isIndex from './.internal/isIndex.js'; -import isObject from './isObject.js'; +import eq from '../eq.js'; +import isArrayLike from '../isArrayLike.js'; +import isIndex from './isIndex.js'; +import isObject from '../isObject.js'; /** * Checks if the given arguments are from an iteratee call. diff --git a/.internal/isKey.js b/.internal/isKey.js index fe5450ee5..d263c9c3b 100644 --- a/.internal/isKey.js +++ b/.internal/isKey.js @@ -1,4 +1,4 @@ -import isSymbol from './isSymbol.js'; +import isSymbol from '../isSymbol.js'; /** Used to match property names within property paths. */ const reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/; diff --git a/.internal/isStrictComparable.js b/.internal/isStrictComparable.js index 087efddb1..fdf29d86e 100644 --- a/.internal/isStrictComparable.js +++ b/.internal/isStrictComparable.js @@ -1,4 +1,4 @@ -import isObject from './isObject.js'; +import isObject from '../isObject.js'; /** * Checks if `value` is suitable for strict equality comparisons, i.e. `===`. diff --git a/.internal/memoizeCapped.js b/.internal/memoizeCapped.js index 9a767b0d9..d421f4678 100644 --- a/.internal/memoizeCapped.js +++ b/.internal/memoizeCapped.js @@ -1,4 +1,4 @@ -import memoize from './memoize.js'; +import memoize from '../memoize.js'; /** Used as the maximum memoize cache size. */ const MAX_MEMOIZE_SIZE = 500; diff --git a/.internal/mergeData.js b/.internal/mergeData.js index 0f313ece8..7f13c5265 100644 --- a/.internal/mergeData.js +++ b/.internal/mergeData.js @@ -1,6 +1,6 @@ -import composeArgs from './.internal/composeArgs.js'; -import composeArgsRight from './.internal/composeArgsRight.js'; -import replaceHolders from './.internal/replaceHolders.js'; +import composeArgs from './composeArgs.js'; +import composeArgsRight from './composeArgsRight.js'; +import replaceHolders from './replaceHolders.js'; /** Used as the internal argument placeholder. */ const PLACEHOLDER = '__lodash_placeholder__'; diff --git a/.internal/nodeUtil.js b/.internal/nodeUtil.js index 52b1ed339..3c44ebc0d 100644 --- a/.internal/nodeUtil.js +++ b/.internal/nodeUtil.js @@ -1,4 +1,4 @@ -import freeGlobal from './.internal/freeGlobal.js'; +import freeGlobal from './freeGlobal.js'; /** Detect free variable `exports`. */ const freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports; diff --git a/.internal/parent.js b/.internal/parent.js index 705a2e3e6..e21148234 100644 --- a/.internal/parent.js +++ b/.internal/parent.js @@ -1,5 +1,5 @@ -import baseGet from './.internal/baseGet.js'; -import baseSlice from './.internal/baseSlice.js'; +import baseGet from './baseGet.js'; +import baseSlice from './baseSlice.js'; /** * Gets the parent value at `path` of `object`. diff --git a/.internal/reorder.js b/.internal/reorder.js index b8aed6b32..d200c4bcd 100644 --- a/.internal/reorder.js +++ b/.internal/reorder.js @@ -1,5 +1,5 @@ -import copyArray from './.internal/copyArray.js'; -import isIndex from './.internal/isIndex.js'; +import copyArray from './copyArray.js'; +import isIndex from './isIndex.js'; /* Built-in method references for those with the same name as other `lodash` methods. */ const nativeMin = Math.min; diff --git a/.internal/root.js b/.internal/root.js index 0a84793f4..4033802ff 100644 --- a/.internal/root.js +++ b/.internal/root.js @@ -1,4 +1,4 @@ -import freeGlobal from './.internal/freeGlobal.js'; +import freeGlobal from './freeGlobal.js'; /** Detect free variable `self`. */ const freeSelf = typeof self == 'object' && self && self.Object === Object && self; diff --git a/.internal/setToString.js b/.internal/setToString.js index 39d8ee091..6a6b252df 100644 --- a/.internal/setToString.js +++ b/.internal/setToString.js @@ -1,5 +1,5 @@ -import baseSetToString from './.internal/baseSetToString.js'; -import shortOut from './.internal/shortOut.js'; +import baseSetToString from './baseSetToString.js'; +import shortOut from './shortOut.js'; /** * Sets the `toString` method of `func` to return `string`. diff --git a/.internal/shuffleSelf.js b/.internal/shuffleSelf.js index dd19baf65..931bbc841 100644 --- a/.internal/shuffleSelf.js +++ b/.internal/shuffleSelf.js @@ -1,4 +1,4 @@ -import baseRandom from './.internal/baseRandom.js'; +import baseRandom from './baseRandom.js'; /** * A specialized version of `shuffle` which mutates and sets the size of `array`. diff --git a/.internal/stringSize.js b/.internal/stringSize.js index 328b22695..5ad911926 100644 --- a/.internal/stringSize.js +++ b/.internal/stringSize.js @@ -1,6 +1,6 @@ -import asciiSize from './.internal/asciiSize.js'; -import hasUnicode from './.internal/hasUnicode.js'; -import unicodeSize from './.internal/unicodeSize.js'; +import asciiSize from './asciiSize.js'; +import hasUnicode from './hasUnicode.js'; +import unicodeSize from './unicodeSize.js'; /** * Gets the number of symbols in `string`. diff --git a/.internal/stringToArray.js b/.internal/stringToArray.js index 185ea2056..a584d5dec 100644 --- a/.internal/stringToArray.js +++ b/.internal/stringToArray.js @@ -1,6 +1,6 @@ -import asciiToArray from './.internal/asciiToArray.js'; -import hasUnicode from './.internal/hasUnicode.js'; -import unicodeToArray from './.internal/unicodeToArray.js'; +import asciiToArray from './asciiToArray.js'; +import hasUnicode from './hasUnicode.js'; +import unicodeToArray from './unicodeToArray.js'; /** * Converts `string` to an array. diff --git a/.internal/stringToPath.js b/.internal/stringToPath.js index 4b5056e45..1c8a64cb4 100644 --- a/.internal/stringToPath.js +++ b/.internal/stringToPath.js @@ -1,4 +1,4 @@ -import memoizeCapped from './.internal/memoizeCapped.js'; +import memoizeCapped from './memoizeCapped.js'; /** Used to match property names within property paths. */ const reLeadingDot = /^\./; diff --git a/.internal/toKey.js b/.internal/toKey.js index a2d23df8e..14aba5945 100644 --- a/.internal/toKey.js +++ b/.internal/toKey.js @@ -1,4 +1,4 @@ -import isSymbol from './isSymbol.js'; +import isSymbol from '../isSymbol.js'; /** Used as references for various `Number` constants. */ const INFINITY = 1 / 0;