An open API service indexing awesome lists of open source software.

https://github.com/dkunin/date-streak

Fiddle with date streaks
https://github.com/dkunin/date-streak

Last synced: 30 days ago
JSON representation

Fiddle with date streaks

Awesome Lists containing this project

README

          

# Date Streak

For now only one function, which determines if you are currently on a streak of dates, and the length of the last streak.

```
import { determineStreak } from 'date-streak';

determineStreak([
today,
yesterday,
twoDaysAgo,
threeDaysAgo,
fourDaysAgo,
fiveDaysAgo,
sixDaysAgo,
sevenDaysAgo
]) // { isCurrentlyOnStreak: true, lengthOfTheLastStreak: 8 }
```