UNPKG

date-fns

Version:

Modern JavaScript date utility library

9 lines (8 loc) 278 B
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; }; }