UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

12 lines (11 loc) 324 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getToday = void 0; const index_js_1 = require("../setters/index.js"); /** * Gets a Date for the start of the given/current day */ function getToday() { return (0, index_js_1.setStartOfDay)(new Date()); } exports.getToday = getToday;