Files
est-frame/node_modules/date-fns/locale/_lib/buildFormatLongFn.js
2025-10-22 05:38:27 +00:00

9 lines
278 B
JavaScript
Executable File

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;
};
}