Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Date support smartActions #14

Open
codemeasandwich opened this issue Mar 16, 2020 · 0 comments
Open

Add Date support smartActions #14

codemeasandwich opened this issue Mar 16, 2020 · 0 comments

Comments

@codemeasandwich
Copy link
Owner

const dateFormat = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/;

function reviver(key, value) {
if (typeof value === "string" && dateFormat.test(value)) {
return new Date(value);
}

return value;
}

const text = '{ "date": "2016-04-26T18:09:16Z" }';
const obj = JSON.parse(text, reviver);

console.log(typeof obj.date);

From: deserializing json strings as javascript date objects

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant