json-date-fix

1.0.5 • Public • Published

json-date-fix npm version

JSON serialization/deserialization fix for Date objects

import 'json-date-fix' // need once at the root of your app


// serialization fix: preserve timezone information
console.log(JSON.stringify(new Date(2023, 5, 7)));

// deserialization date-string to Date object
console.log(JSON.parse('"2023-06-07T00:00:00.000+03:00"'));


//// Console output:
// "2023-06-07T00:00:00.000+03:00"
// Wed Jun 07 2023 00:00:00 GMT+0300 (Moscow Standard Time)

Example with DateOnly format support

import jsonDateFix from './index.js'; 
jsonDateFix({ dateonly: true });  // enable dateonly format ('yyyy-MM-dd') analysis 


// deserialization dateonly-string to Date object
console.log(JSON.parse('"2023-06-07"'));

//// Console output:
// Wed Jun 07 2023 00:00:00 GMT+0300 (Moscow Standard Time)

Package Sidebar

Install

npm i json-date-fix

Weekly Downloads

2

Version

1.0.5

License

MIT

Unpacked Size

4.49 kB

Total Files

4

Last publish

Collaborators

  • mustaddon