UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

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