2.0.3 • Published 11 months ago

@sbmdkl/nepali-date-converter v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@sbmdkl/nepali-date-converter

NPM JavaScript Style Guide

A javascript package to convert nepali date BS (Bikram Sambat) to AD and vice-versa. Also include a feature to calculate age in nepali date. Demo.

Installation

npm install @sbmdkl/nepali-date-converter

Usage

const { adToBs, bsToAd, calculateAge } = require('@sbmdkl/nepali-date-converter');
try {
	const bsDate = adToBs('2078-03-05');
	console.log(bsDate);
	// to calculate age
	const myAge = calculateAge('2070-10-10');
	console.log(myAge);
} catch (e) {
	console.log(e.message);
}

Available Methods

dateFormat

Format the date to provide various output based on format string

Date Range

Date convert will works between these Date Range:

Date Range for English Date : 1921 AD to 2040 AD

Date Range for Nepali Date : 1978 BS to 2099 BS

License

MIT © Shubham Dhakal