Files
Your Name 38652eb9b5 Initalize
2026-05-03 12:12:57 -04:00

17 lines
503 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var date_1 = require("./utils/date");
var register_1 = require("./register");
/**
* format a TDate into string
* @param date
* @param locale
* @param opts
*/
exports.format = function (date, locale, opts) {
// diff seconds
var sec = date_1.diffSec(date, opts && opts.relativeDate);
// format it with locale
return date_1.formatDiff(sec, register_1.getLocale(locale));
};
//# sourceMappingURL=format.js.map