summaryrefslogtreecommitdiff
path: root/src/node_modules/validator/es/lib/toDate.js
blob: 62422a31724c7313234665f4a61d6fa80deb94dc (plain)
1
2
3
4
5
6
import assertString from './util/assertString';
export default function toDate(date) {
  assertString(date);
  date = Date.parse(date);
  return !isNaN(date) ? new Date(date) : null;
}