Skip to content

Instantly share code, notes, and snippets.

@stephenh
Created July 25, 2025 21:18
Show Gist options
  • Save stephenh/1929c7f95d6cbb2ec7758f11ae34a3b7 to your computer and use it in GitHub Desktop.
Save stephenh/1929c7f95d6cbb2ec7758f11ae34a3b7 to your computer and use it in GitHub Desktop.
src
├── array
│   ├── asyncFilter.ts
│   ├── asyncFlatMap.ts
│   ├── asyncForEach.ts
│   ├── asyncMap.ts
│   ├── asyncPartition.ts
│   ├── asyncSome.ts
│   ├── batched.ts
│   ├── compact.ts
│   ├── count.ts
│   ├── difference.ts
│   ├── each.ts
│   ├── everyHasSame.ts
│   ├── findAfter.ts
│   ├── findAndRemove.ts
│   ├── findBefore.ts
│   ├── first.ts
│   ├── groupBy.ts
│   ├── hasSameElements.ts
│   ├── index.ts
│   ├── intersection.ts
│   ├── isEmpty.ts
│   ├── keyBy.ts
│   ├── last.ts
│   ├── mapToObject.ts
│   ├── maxBy.ts
│   ├── max.ts
│   ├── minBy.ts
│   ├── min.ts
│   ├── nonEmpty.ts
│   ├── notSameElements.ts
│   ├── partition.ts
│   ├── removeAll.ts
│   ├── remove.ts
│   ├── sentenceJoin.ts
│   ├── sortBy.ts
│   ├── sum.ts
│   ├── toObject.ts
│   ├── unique.ts
│   ├── withoutAll.ts
│   ├── without.ts
│   └── xor.ts
├── index.ts
├── map
│   ├── getOrCreate.ts
│   └── index.ts
├── object
│   ├── index.ts
│   ├── toEntries.ts
│   ├── toKeys.ts
│   ├── toValues.ts
│   └── utils.ts
├── temporal
│   ├── index.ts
│   ├── interval
│   │   └── index.ts
│   ├── legacyDate
│   │   └── index.ts
│   ├── plainDate
│   │   ├── addBusinessDays.ts
│   │   ├── differenceInBusinessDays.ts
│   │   ├── endOfMonth.ts
│   │   ├── endOfWeek.ts
│   │   ├── endOfYear.ts
│   │   ├── index.ts
│   │   ├── isAfter.ts
│   │   ├── isBefore.ts
│   │   ├── isDayOfWeek.ts
│   │   ├── isWeekend.ts
│   │   ├── isWithin.ts
│   │   ├── startOfMonth.ts
│   │   ├── startOfWeek.ts
│   │   ├── startOfYear.ts
│   │   ├── toInterval.ts
│   │   ├── toLegacyDate.ts
│   │   └── toZonedDateTime.ts
│   ├── setupTests.ts
│   └── zonedDateTime
│   ├── addBusinessDays.ts
│   ├── differenceInBusinessDays.ts
│   ├── endOfDay.ts
│   ├── endOfMonth.ts
│   ├── endOfWeek.ts
│   ├── endOfYear.ts
│   ├── index.ts
│   ├── isAfter.ts
│   ├── isBefore.ts
│   ├── isDayOfWeek.ts
│   ├── isWeekend.ts
│   ├── isWithin.ts
│   ├── startOfDay.ts
│   ├── startOfMonth.ts
│   ├── startOfWeek.ts
│   ├── startOfYear.ts
│   ├── toInterval.ts
│   ├── toLegacyDate.ts
│   └── toPlainDate.ts
└── utils.ts
9 directories, 90 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment