database-petani-mobile/node_modules/date-fns/locale/_lib/buildFormatLongFn.mjs
2026-02-23 16:39:35 +07: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;
};
}