Files
Gemini-Search/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

9 lines
278 B
JavaScript

export function buildFormatLongFn(args) {
return (options = {}) => {
// TODO: Remove String()
const width = options.width ? String(options.width) : args.defaultWidth;
const format = args.formats[width] || args.formats[args.defaultWidth];
return format;
};
}