debian-mirror-gitlab/spec/frontend/__helpers__/datetime_helpers.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
191 B
JavaScript
Raw Normal View History

2021-03-08 18:12:59 +05:30
import dateFormat from 'dateformat';
/**
* Returns a date object corresponding to the given date string.
*/
export const dateFromString = (dateString) => new Date(dateFormat(dateString));