Skip to content

Instantly share code, notes, and snippets.

@phuoctamm
Created October 12, 2021 08:13
Show Gist options
  • Save phuoctamm/c33e5049d987dc38f995c0728d23b490 to your computer and use it in GitHub Desktop.
Save phuoctamm/c33e5049d987dc38f995c0728d23b490 to your computer and use it in GitHub Desktop.
parse.js
export const toDateParse = (date, dateFormat = 'MM/dd/yyyy') => {
try {
return parse(date, dateFormat, new Date());
} catch (e) {
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment