25 lines
546 B
TypeScript
25 lines
546 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
/**
|
|
* When constructing a Date, the month is zero-based. This can be confusing, since people are
|
|
* used to seeing them one-based. So we create these aliases to make writing the tests easier.
|
|
*/
|
|
export const JAN = 0,
|
|
FEB = 1,
|
|
MAR = 2,
|
|
APR = 3,
|
|
MAY = 4,
|
|
JUN = 5,
|
|
JUL = 6,
|
|
AUG = 7,
|
|
SEP = 8,
|
|
OCT = 9,
|
|
NOV = 10,
|
|
DEC = 11;
|