UNPKG

@qntm-code/utils

Version:

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

8 lines (7 loc) 213 B
import { modifyDate } from './modify-date.js'; /** * Subtracts from a date by a given amount of time units */ export function subtractFromDate(date, amount, unit) { return modifyDate(date, -amount, unit); }