Skip to content

Commit 3d809fe

Browse files
committed
chore: prettier-ignore months array
1 parent 2623a5c commit 3d809fe

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

packages/smithy-client/src/date-utils.ts

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,8 @@
1212

1313
// Build indexes outside so we allocate them once.
1414
const days: Array<String> = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
15-
const months: Array<String> = [
16-
"Jan",
17-
"Feb",
18-
"Mar",
19-
"Apr",
20-
"May",
21-
"Jun",
22-
"Jul",
23-
"Aug",
24-
"Sep",
25-
"Oct",
26-
"Nov",
27-
"Dec",
28-
];
15+
// prettier-ignore
16+
const months: Array<String> = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
2917

3018
export function dateToUtcString(date: Date): string {
3119
const year = date.getUTCFullYear();

0 commit comments

Comments
 (0)