UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

21 lines (19 loc) 276 B
/** * @module months * @description A list of months */ export const months = [ 'january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december', ] as const; export type Months = (typeof months)[number];