1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 |
x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 |
/**
* Utilities for dealing with {@linkcode Date} objects.
*
* ```ts
* import { dayOfYear, isLeap, difference, HOUR, MINUTE, SECOND } from "@std/datetime";
* import { assertEquals } from "@std/assert";
*
* assertEquals(dayOfYear(new Date("2019-03-11T03:24:00")), 70);
* assertEquals(isLeap(1970), false);
*
* const date0 = new Date("2018-05-14");
* const date1 = new Date("2020-05-13");
* assertEquals(difference(date0, date1).years, 1);
*
* assertEquals(HOUR / MINUTE, 60);
* assertEquals(MINUTE / SECOND, 60);
* ```
*
* @module
*/
import { SECOND as _variable_SECOND } from "jsr:@std/[email protected]"
/**
* The number of milliseconds in a second.
*
* @example ```ts
* import { SECOND } from "@std/datetime/constants";
*
* SECOND; // 1_000
* ```
*/
const SECOND = _variable_SECOND as typeof _variable_SECOND
export { SECOND }
import { MINUTE as _variable_MINUTE } from "jsr:@std/[email protected]"
/**
* The number of milliseconds in a minute.
*
* @example ```ts
* import { MINUTE } from "@std/datetime/constants";
*
* MINUTE; // 60_000
* ```
*/
const MINUTE = _variable_MINUTE as typeof _variable_MINUTE
export { MINUTE }
import { HOUR as _variable_HOUR } from "jsr:@std/[email protected]"
/**
* The number of milliseconds in an hour.
*
* @example ```ts
* import { HOUR } from "@std/datetime/constants";
*
* HOUR; // 3_600_000
* ```
*/
const HOUR = _variable_HOUR as typeof _variable_HOUR
export { HOUR }
import { DAY as _variable_DAY } from "jsr:@std/[email protected]"
/**
* The number of milliseconds in a day.
*
* @example ```ts
* import { DAY } from "@std/datetime/constants";
*
* DAY; // 86_400_000
* ```
*/
const DAY = _variable_DAY as typeof _variable_DAY
export { DAY }
import { WEEK as _variable_WEEK } from "jsr:@std/[email protected]"
/**
* The number of milliseconds in a week.
*
* @example ```ts
* import { WEEK } from "@std/datetime/constants";
*
* WEEK; // 604_800_000
* ```
*/
const WEEK = _variable_WEEK as typeof _variable_WEEK
export { WEEK }
import { dayOfYear as _function_dayOfYear } from "jsr:@std/[email protected]"
/**
* Returns the number of the day in the year in the local time zone.
*
* @param date Date to get the day of the year of.
* @return Number of the day in the year in the local time zone.
*
* @example Basic usage
* ```ts
* import { dayOfYear } from "@std/datetime/day-of-year";
* import { assertEquals } from "@std/assert";
*
* assertEquals(dayOfYear(new Date("2019-03-11T03:24:00")), 70);
* ```
*/
const dayOfYear = _function_dayOfYear as typeof _function_dayOfYear
export { dayOfYear }
import { dayOfYearUtc as _function_dayOfYearUtc } from "jsr:@std/[email protected]"
/**
* Returns the number of the day in the year in UTC time.
*
* @param date Date to get the day of the year of.
* @return Number of the day in the year in UTC time.
*
* @example Usage
* ```ts
* import { dayOfYearUtc } from "@std/datetime/day-of-year";
* import { assertEquals } from "@std/assert";
*
* assertEquals(dayOfYearUtc(new Date("2019-03-11T03:24:00.000Z")), 70);
* ```
*/
const dayOfYearUtc = _function_dayOfYearUtc as typeof _function_dayOfYearUtc
export { dayOfYearUtc }
import type { Unit as _typeAlias_Unit } from "jsr:@std/[email protected]"
/**
* Duration units for {@linkcode DifferenceFormat} and
* {@linkcode DifferenceOptions}.
*/
type Unit = _typeAlias_Unit
export type { Unit }
import type { DifferenceFormat as _typeAlias_DifferenceFormat } from "jsr:@std/[email protected]"
/**
* Return type for {@linkcode difference}.
*/
type DifferenceFormat = _typeAlias_DifferenceFormat
export type { DifferenceFormat }
import type { DifferenceOptions as _typeAlias_DifferenceOptions } from "jsr:@std/[email protected]"
/**
* Options for {@linkcode difference}.
*/
type DifferenceOptions = _typeAlias_DifferenceOptions
export type { DifferenceOptions }
import { difference as _function_difference } from "jsr:@std/[email protected]"
/**
* Calculates the difference of the 2 given dates in various units. If the units
* are omitted, it returns the difference in the all available units.
*
* @param from Year to calculate difference from.
* @param to Year to calculate difference to.
* @param options Options such as units to calculate difference in.
* @return The difference of the 2 given dates in various units.
*
* @example Basic usage
* ```ts
* import { difference } from "@std/datetime/difference";
* import { assertEquals } from "@std/assert";
*
* const date0 = new Date("2018-05-14");
* const date1 = new Date("2020-05-13");
*
* assertEquals(difference(date0, date1), {
* milliseconds: 63072000000,
* seconds: 63072000,
* minutes: 1051200,
* hours: 17520,
* days: 730,
* weeks: 104,
* months: 23,
* quarters: 7,
* years: 1
* });
* ```
*
* @example Calculate difference in specific units
*
* The `units` option defines which units to calculate the difference in.
*
* ```ts
* import { difference } from "@std/datetime/difference";
* import { assertEquals } from "@std/assert";
*
* const date0 = new Date("2018-05-14");
* const date1 = new Date("2020-05-13");
*
* const result = difference(date0, date1, { units: ["days", "months", "years"] });
*
* assertEquals(result, {
* days: 730,
* months: 23,
* years: 1
* });
* ```
*/
const difference = _function_difference as typeof _function_difference
export { difference }
import type { FormatOptions as _interface_FormatOptions } from "jsr:@std/[email protected]"
/**
* Options for {@linkcode format}.
*/
interface FormatOptions extends _interface_FormatOptions {}
export type { FormatOptions }
import { format as _function_format } from "jsr:@std/[email protected]"
/**
* Formats a date to a string with the specified format.
*
* The following symbols from
* {@link https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table | unicode LDML}
* are supported:
* - `yyyy` - numeric year
* - `yy` - 2-digit year
* - `M` - numeric month
* - `MM` - 2-digit month
* - `d` - numeric day
* - `dd` - 2-digit day
* - `H` - numeric hour (0-23 hours)
* - `HH` - 2-digit hour (00-23 hours)
* - `h` - numeric hour (1-12 hours)
* - `hh` - 2-digit hour (01-12 hours)
* - `m` - numeric minute
* - `mm` - 2-digit minute
* - `s` - numeric second
* - `ss` - 2-digit second
* - `S` - 1-digit fractional second
* - `SS` - 2-digit fractional second
* - `SSS` - 3-digit fractional second
* - `a` - dayPeriod, either `AM` or `PM`
* - `'foo'` - quoted literal
* - `./-` - unquoted literal
*
* @param date The date to be formatted.
* @param formatString The date time string format.
* @param options The options to customize the formatting of the date.
* @return The formatted date string.
*
* @example Basic usage
* ```ts no-eval
* import { format } from "@std/datetime/format";
* import { assertEquals } from "@std/assert";
*
* const date = new Date(2019, 0, 20, 16, 34, 23, 123);
*
* assertEquals(format(date, "dd-MM-yyyy"), "20-01-2019");
*
* assertEquals(format(date, "MM-dd-yyyy HH:mm:ss.SSS"), "01-20-2019 16:34:23.123");
*
* assertEquals(format(date, "'today:' yyyy-MM-dd"), "today: 2019-01-20");
* ```
*
* @example UTC formatting
*
* Enable UTC formatting by setting the `utc` option to `true`.
*
* ```ts no-eval
* import { format } from "@std/datetime/format";
* import { assertEquals } from "@std/assert";
*
* const date = new Date(2019, 0, 20, 16, 34, 23, 123);
*
* assertEquals(format(date, "yyyy-MM-dd HH:mm:ss", { timeZone: "UTC" }), "2019-01-20 05:34:23");
* ```
*/
const format = _function_format as typeof _function_format
export { format }
import { isLeap as _function_isLeap } from "jsr:@std/[email protected]"
/**
* Returns whether the given year is a leap year. Passing in a
* {@linkcode Date} object will return the leap year status of the year of that
* object and take the current timezone into account. Passing in a number will
* return the leap year status of that number.
*
* This is based on
* {@link https://docs.microsoft.com/en-us/office/troubleshoot/excel/determine-a-leap-year}.
*
* @param year The year in number or `Date` format.
* @return `true` if the given year is a leap year; `false` otherwise.
*
* @example Basic usage
* ```ts
* import { isLeap } from "@std/datetime/is-leap";
* import { assertEquals } from "@std/assert";
*
* assertEquals(isLeap(new Date("1970-01-02")), false);
*
* assertEquals(isLeap(1970), false);
*
* assertEquals(isLeap(new Date("1972-01-02")), true);
*
* assertEquals(isLeap(1972), true);
* ```
*
* @example Accounting for timezones
* ```ts no-assert
* import { isLeap } from "@std/datetime/is-leap";
*
* // True if the local timezone is GMT+0; false if the local timezone is GMT-1
* isLeap(new Date("2000-01-01"));
*
* // True regardless of the local timezone
* isLeap(2000);
*
* ```
*/
const isLeap = _function_isLeap as typeof _function_isLeap
export { isLeap }
import { isUtcLeap as _function_isUtcLeap } from "jsr:@std/[email protected]"
/**
* Returns whether the given year is a leap year in UTC time. This always
* returns the same value regardless of the local timezone.
*
* This is based on
* {@link https://docs.microsoft.com/en-us/office/troubleshoot/excel/determine-a-leap-year}.
*
* @param year The year in number or `Date` format.
* @return `true` if the given year is a leap year; `false` otherwise.
*
* @example Basic usage
* ```ts
* import { isUtcLeap } from "@std/datetime/is-leap";
* import { assertEquals } from "@std/assert";
*
* assertEquals(isUtcLeap(new Date("2000-01-01")), true);
*
* assertEquals(isUtcLeap(new Date("December 31, 1999 23:59:59 GMT-01:00")), true);
*
* assertEquals(isUtcLeap(2000), true);
*
* assertEquals(isUtcLeap(1999), false);
* ```
*/
const isUtcLeap = _function_isUtcLeap as typeof _function_isUtcLeap
export { isUtcLeap }
import { parse as _function_parse } from "jsr:@std/[email protected]"
/**
* Parses a date string using the specified format string.
*
* The following symbols from
* {@link https://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table | unicode LDML}
* are supported:
* - `yyyy` - numeric year
* - `yy` - 2-digit year
* - `M` - numeric month
* - `MM` - 2-digit month
* - `d` - numeric day
* - `dd` - 2-digit day
* - `H` - numeric hour (0-23 hours)
* - `HH` - 2-digit hour (00-23 hours)
* - `h` - numeric hour (1-12 hours)
* - `hh` - 2-digit hour (01-12 hours)
* - `m` - numeric minute
* - `mm` - 2-digit minute
* - `s` - numeric second
* - `ss` - 2-digit second
* - `S` - 1-digit fractional second
* - `SS` - 2-digit fractional second
* - `SSS` - 3-digit fractional second
* - `a` - dayPeriod, either `AM` or `PM`
* - `'foo'` - quoted literal
* - `./-` - unquoted literal
*
* @param dateString The date string to parse.
* @param formatString The date time string format.
* @return The parsed date.
*
* @example Basic usage
* ```ts
* import { parse } from "@std/datetime/parse";
* import { assertEquals } from "@std/assert";
*
* assertEquals(parse("01-03-2019 16:30", "MM-dd-yyyy HH:mm"), new Date(2019, 0, 3, 16, 30));
*
* assertEquals(parse("01-03-2019 16:33:23.123", "MM-dd-yyyy HH:mm:ss.SSS"), new Date(2019, 0, 3, 16, 33, 23, 123));
* ```
*/
const parse = _function_parse as typeof _function_parse
export { parse }
import { weekOfYear as _function_weekOfYear } from "jsr:@std/[email protected]"
/**
* Returns the ISO week number of the provided date (1-53).
*
* @param date Date to get the week number of.
* @return The week number of the provided date.
*
* @example Basic usage
* ```ts
* import { weekOfYear } from "@std/datetime/week-of-year";
* import { assertEquals } from "@std/assert";
*
* assertEquals(weekOfYear(new Date("2020-12-28T03:24:00")), 53);
*
* assertEquals(weekOfYear(new Date("2020-07-10T03:24:00")), 28);
* ```
*/
const weekOfYear = _function_weekOfYear as typeof _function_weekOfYear
export { weekOfYear }
|