date-excel-to-js-and-reverse
v1.0.6
Published
transform date from excel to js and js to excel, easy ๐
Downloads
43
Maintainers
Readme
date-excel-to-js-and-reverse
Description
transform date from excel to js and js to excel, easy ๐
Install
npm i date-excel-to-js-and-reverse
Usage
const { dateExcelToJs } = require('date-excel-to-js-and-reverse');
console.log(dateExcelToJs(44832));
// 2022-09-28T00:00:00.000Z
to transform from javascript to excel supports number and string
const { dateJsToExcel } = require('date-excel-to-js-and-reverse');
console.log(dateJsToExcel('2022-09-22'))
// 44826
console.log(dateJsToExcel(1663804800000))
// 44826