UNPKG

date-fns-jalali

Version:

Modern JavaScript date utility library for jalali calendar

12 lines (10 loc) 333 B
"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; }; }