Releases: twlite/datenp
Releases · twlite/datenp
v0.1.2
v0.1.1
v0.1.0
DateNP
Lightweight JavaScript library to convert Nepali and English dates.
Features
- Lightweight
- Zero dependencies
- Supports date conversion from
1975
BS to2100
BS - Easy to use
- Beginner friendly
Installation
Node
$ npm install datenp
Deno
import DateNP from "https://deno.land/x/datenp/mod.ts";
Example
CommonJS
const { DateNP } = require("datenp");
AD to BS
import DateNP from "datenp"
const np = new DateNP(new Date("2022-01-06"));
console.log(np.toBS()); // { year: 2078, month: 9, day: 22 }
BS to AD
import DateNP from "datenp"
const np = new DateNP("2078-09-22");
console.log(np.toAD()); // { year: 2022, month: 1, day: 6 }
console.log(np.getMonthName()); // "Poush"
Full Changelog: https://github.com/DevAndromeda/datenp/commits/0.1.0