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) 198 B
import { modifyDate } from './modify-date.js'; /** * Adds to a date by a given amount of time units */ export function addToDate(date, amount, unit) { return modifyDate(date, amount, unit); }