UNPKG

la-cosa-nostra

Version:

A Mafia bot designed to run in Discord - beware the traitors and the lies!

13 lines (7 loc) 245 B
module.exports = function dateTimeReviver (key, value) { var date_format = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$/g; if (typeof value === "string" && date_format.test(value)) { return new Date(value); }; return value; };