UNPKG

917 BJavaScriptView Raw
1import { addMilliseconds } from "./addMilliseconds.js";
2
3/**
4 * The {@link subMilliseconds} function options.
5 */
6
7/**
8 * Subtract the specified number of milliseconds from the given date.
9 *
10 * @typeParam DateType - The `Date` type, the function operates on. Gets inferred from passed arguments. Allows to use extensions like [`UTCDate`](https://github.com/date-fns/utc).
11 * @typeParam ResultDate - The result `Date` type, it is the type returned from the context function if it is passed, or inferred from the arguments.
12 *
13 * @param date - The date to be changed
14 * @param amount - The amount of milliseconds to be subtracted.
15 * @param options - An object with options
16 *
17 * @returns The new date with the milliseconds subtracted
18 */
19export function subMilliseconds(date, amount, options) {
20 return addMilliseconds(date, -amount, options);
21}
22
23// Fallback for modularized imports:
24export default subMilliseconds;