UNPKG

@sebgroup/frontend-tools

Version:
20 lines (16 loc) 444 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); /** * Clear the time of a date object * @param {Date} date The date to clear its time * @returns {Date} The cleared date object */ function clearTime(date) { if (!(date instanceof Date)) { date = new Date(date); } date.setHours(0, 0, 0, 0); return date; } exports.clearTime = clearTime; //# sourceMappingURL=clearTime.js.map