buildFormatLongFn.js 278 B

12345678
  1. export function buildFormatLongFn(args) {
  2. return (options = {}) => {
  3. // TODO: Remove String()
  4. const width = options.width ? String(options.width) : args.defaultWidth;
  5. const format = args.formats[width] || args.formats[args.defaultWidth];
  6. return format;
  7. };
  8. }