Skip to content

v0.25.0

Compare
Choose a tag to compare
@chharvey chharvey released this 10 Jul 23:49
· 40 commits to master since this release
  • new Array static methods:
    • xjs_Array.forEachAggregated: like .forEach but catches and aggregates errors, and runs until the end of the array
    • xjs_Array.mapAggregated: like .map but catches and aggregates errors, and runs until the end of the array
  • new Set static methods:
    • xjs_Set.has
    • xjs_Set.add
    • xjs_Set.delete
  • new Map static methods:
    • xjs_Map.has
    • xjs_Map.get
    • xjs_Map.set
    • xjs_Map.delete
  • updated Set static methods, taking optional comparator parameter:
    • xjs_Set.union
    • xjs_Set.intersection
    • xjs_Set.difference
    • xjs_Set.symmetricDifference
  • node v16+ required