UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

8 lines (7 loc) 254 B
declare type FormatOptions = 'long' | 'short' | 'narrow'; /** * Returns the days for the given locale and format. * Defaults to en-US/long */ declare const getDays: (locale?: string, format?: FormatOptions) => string[]; export default getDays;