Simple, lightweight date object library for JavaScript/TypeScript, without the time nonsense.
npm install @still-forest/proper-date.jsA simple, lightweight date object library for JavaScript/TypeScript, without the time and timezone nonsense.

``js
import ProperDate from "@still-forest/proper-date.js";
const date = ProperDate("2024-12-25");
date.formatted; // '2024-12-25'
// and so on
`
Testing this package as a dependency is easy with Yalc:
`bashInstall (depending on your preferred package manager)
npm i yalc -g
yarn global add yalc
pnpm add -g yalc
folder and modify your to your .gitignore,$3
Manual:
`bash
git tag v0.1.0
git push origin v0.1.0
``