6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
import dateFormat from '~/lib/dateformat';
|
|
|
|
/**
|
|
* Returns a date object corresponding to the given date string.
|
|
*/
|
|
export const dateFromString = (dateString) => new Date(dateFormat(dateString));
|