Files
Housekeeping-web-admin/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs
T
2026-06-24 09:48:54 +02: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;
};
}