@ce1pers/date-helpers
Version:
Simple date time helpers.
20 lines (19 loc) • 2.58 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.makeCalendar = exports.getLastDateOfMonth = exports.getLastDateOfCurrentMonth = exports.getFirstDateOfMonth = exports.getFirstDateOfCurrentMonth = exports.withFormat = exports.getTimeDifferenceAsSeconds = exports.getTimeDifferenceAsMinutes = exports.getTimeDifferenceAsHours = exports.getTimeDifference = exports.getPassedTime = exports.divideDateByEight = exports.convertEightToDate = exports.convertDateToEight = void 0;
var utilities_1 = require("./src/shared/utilities");
Object.defineProperty(exports, "convertDateToEight", { enumerable: true, get: function () { return utilities_1.convertDateToEight; } });
Object.defineProperty(exports, "convertEightToDate", { enumerable: true, get: function () { return utilities_1.convertEightToDate; } });
Object.defineProperty(exports, "divideDateByEight", { enumerable: true, get: function () { return utilities_1.divideDateByEight; } });
Object.defineProperty(exports, "getPassedTime", { enumerable: true, get: function () { return utilities_1.getPassedTime; } });
Object.defineProperty(exports, "getTimeDifference", { enumerable: true, get: function () { return utilities_1.getTimeDifference; } });
Object.defineProperty(exports, "getTimeDifferenceAsHours", { enumerable: true, get: function () { return utilities_1.getTimeDifferenceAsHours; } });
Object.defineProperty(exports, "getTimeDifferenceAsMinutes", { enumerable: true, get: function () { return utilities_1.getTimeDifferenceAsMinutes; } });
Object.defineProperty(exports, "getTimeDifferenceAsSeconds", { enumerable: true, get: function () { return utilities_1.getTimeDifferenceAsSeconds; } });
Object.defineProperty(exports, "withFormat", { enumerable: true, get: function () { return utilities_1.withFormat; } });
Object.defineProperty(exports, "getFirstDateOfCurrentMonth", { enumerable: true, get: function () { return utilities_1.getFirstDateOfCurrentMonth; } });
Object.defineProperty(exports, "getFirstDateOfMonth", { enumerable: true, get: function () { return utilities_1.getFirstDateOfMonth; } });
Object.defineProperty(exports, "getLastDateOfCurrentMonth", { enumerable: true, get: function () { return utilities_1.getLastDateOfCurrentMonth; } });
Object.defineProperty(exports, "getLastDateOfMonth", { enumerable: true, get: function () { return utilities_1.getLastDateOfMonth; } });
var calendar_helpers_1 = require("./src/calendar-helpers");
Object.defineProperty(exports, "makeCalendar", { enumerable: true, get: function () { return calendar_helpers_1.makeCalendar; } });