buildFormatLongFn.cjs 333 B

1234567891011
  1. "use strict";
  2. exports.buildFormatLongFn = buildFormatLongFn;
  3. function buildFormatLongFn(args) {
  4. return (options = {}) => {
  5. // TODO: Remove String()
  6. const width = options.width ? String(options.width) : args.defaultWidth;
  7. const format = args.formats[width] || args.formats[args.defaultWidth];
  8. return format;
  9. };
  10. }