Skip to main content
Module

std/datetime/constants.ts

The Deno Standard Library
Go to Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
/** * The number of milliseconds in a second. * * @example * ```ts * import { SECOND } from "https://deno.land/std@$STD_VERSION/datetime/constants.ts"; * * SECOND; // 1_000 * ``` */export const SECOND = 1e3;/** * The number of milliseconds in a minute. * * @example * ```ts * import { MINUTE } from "https://deno.land/std@$STD_VERSION/datetime/constants.ts"; * * MINUTE; // 60_000 * ``` */export const MINUTE: number = SECOND * 60;/** * The number of milliseconds in an hour. * * @example * ```ts * import { HOUR } from "https://deno.land/std@$STD_VERSION/datetime/constants.ts"; * * HOUR; // 3_600_000 * ``` */export const HOUR: number = MINUTE * 60;/** * The number of milliseconds in a day. * * @example * ```ts * import { DAY } from "https://deno.land/std@$STD_VERSION/datetime/constants.ts"; * * DAY; // 86_400_000 * ``` */export const DAY: number = HOUR * 24;/** * The number of milliseconds in a week. * * @example * ```ts * import { WEEK } from "https://deno.land/std@$STD_VERSION/datetime/constants.ts"; * * WEEK; // 604_800_000 * ``` */export const WEEK: number = DAY * 7;