@formatjs/intl-datetimeformat
Version:
Intl.DateTimeFormat polyfill
19 lines (18 loc) • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FormatDateTime = FormatDateTime;
var PartitionDateTimePattern_1 = require("./PartitionDateTimePattern");
/**
* https://tc39.es/ecma402/#sec-formatdatetime
* @param dtf DateTimeFormat
* @param x
*/
function FormatDateTime(dtf, x, implDetails) {
var parts = (0, PartitionDateTimePattern_1.PartitionDateTimePattern)(dtf, x, implDetails);
var result = '';
for (var _i = 0, parts_1 = parts; _i < parts_1.length; _i++) {
var part = parts_1[_i];
result += part.value;
}
return result;
}