deno.land / std@0.173.0 / datetime / format.ts

نووسراو ببینە
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
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.import { DateTimeFormatter } from "./_common.ts";
/** * Takes an input `date` and a `formatString` to format to a `string`. * * @example * ```ts * import { format } from "https://deno.land/std@$STD_VERSION/datetime/format.ts"; * * format(new Date(2019, 0, 20), "dd-MM-yyyy"); // output : "20-01-2019" * format(new Date(2019, 0, 20), "yyyy-MM-dd"); // output : "2019-01-20" * format(new Date(2019, 0, 20), "dd.MM.yyyy"); // output : "20.01.2019" * format(new Date(2019, 0, 20, 16, 34), "MM-dd-yyyy HH:mm"); // output : "01-20-2019 16:34" * format(new Date(2019, 0, 20, 16, 34), "MM-dd-yyyy hh:mm a"); // output : "01-20-2019 04:34 PM" * format(new Date(2019, 0, 20, 16, 34), "HH:mm MM-dd-yyyy"); // output : "16:34 01-20-2019" * format(new Date(2019, 0, 20, 16, 34, 23, 123), "MM-dd-yyyy HH:mm:ss.SSS"); // output : "01-20-2019 16:34:23.123" * format(new Date(2019, 0, 20), "'today:' yyyy-MM-dd"); // output : "today: 2019-01-20" * ``` * * @param date Date * @param formatString Format string * @return formatted date string */export function format(date: Date, formatString: string): string { const formatter = new DateTimeFormatter(formatString); return formatter.format(date);}
std

Version Info

Tagged at
a year ago