Permalink
Switch branches/tags
Nothing to show
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
9 lines (7 sloc) 172 Bytes
import moment from 'moment';
export default function valueToDate(value, dateFormat) {
if (!value) {
return null;
}
return moment(value, dateFormat);
}