SAP-BTP-Spielwiese/app1/node_modules/validator/es/lib/toDate.js

6 lines
184 B
JavaScript
Raw Normal View History

import assertString from './util/assertString';
export default function toDate(date) {
assertString(date);
date = Date.parse(date);
return !isNaN(date) ? new Date(date) : null;
}