0.0.3 • Published 2 years ago
@marekzelinka17/streak-counter v0.0.3
@marekzelinka17/streak-counter - a basic streak counter
This is a basic streak counter - inspired by Duolingo - written in TypeScript and meant for the browser (uses
localStorage).
This module is available in three formats:
- ES Module:
dist/index.module.js - CommonJS:
dist/index.cjs - UMD:
dist/index.umd.js
Install
npm install @marekzelinka17/streak-counterUsage
import { streakCounter } from "@marekzelinka17/streak-counter";
const today = new Date();
const streak = streakCounter(localStorage, today);
// streakCounter returns an object:
// {
// currentCount: 1,
// lastLoginDate: "11/11/2021",
// startDate: "11/11/2021",
// }Credits
- TypeScript Course - Build a TypeScript Project From Scratch
License
MIT © Marek Zelinka
0.0.3
2 years ago