UNPKG

app-datepicker-rtl

Version:

A custom datepicker element based on Google's Material Design built from scratch with lit-element. Fork of app-datepicker by motts.

9 lines (8 loc) 287 B
export function splitString(dateString, cb) { const dateList = typeof dateString === 'string' && dateString.length > 0 ? dateString.split(/,\s*/i) : []; if (!dateList.length) return []; return typeof cb === 'function' ? dateList.map(cb) : dateList; }