@zelgadis87/utils-core 5.1.1 → 5.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esbuild/index.mjs CHANGED
@@ -937,7 +937,7 @@ function entriesToEntries(dict, mapper) {
937
937
  return entriesToDict(dictToEntries(dict).map((entry) => mapper(entry)));
938
938
  }
939
939
  var mapEntries = entriesToEntries;
940
- function mapEntriesToList(dict, mapper) {
940
+ function entriesToList(dict, mapper) {
941
941
  return dictToEntries(dict).map((entry) => mapper(entry));
942
942
  }
943
943
 
@@ -2752,6 +2752,7 @@ export {
2752
2752
  ensureReadableArray,
2753
2753
  entriesToDict,
2754
2754
  entriesToEntries,
2755
+ entriesToList,
2755
2756
  extendArray,
2756
2757
  extendArrayWith,
2757
2758
  fill,
@@ -2804,7 +2805,6 @@ export {
2804
2805
  listToDict,
2805
2806
  mapDefined,
2806
2807
  mapEntries,
2807
- mapEntriesToList,
2808
2808
  mapFirstTruthy,
2809
2809
  mapTruthys,
2810
2810
  max,