Blame view

天文台pc/tianwentai-ui/node_modules/date-fns/locale/_lib/buildFormatLongFn.js 333 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
  "use strict";
  exports.buildFormatLongFn = buildFormatLongFn;
  
  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;
    };
  }