bpms_site/.svn/pristine/3b/3b4fd8f6b8ae5f6f66dcb533bab71cf74effbe2a.svn-base
2025-11-02 16:38:49 +03:30

15 lines
451 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "getOxfordCommaList", {
enumerable: true,
get: function() {
return getOxfordCommaList;
}
});
function getOxfordCommaList(items) {
return items.map((v, index, { length })=>(index > 0 ? index === length - 1 ? length > 2 ? ", and " : " and " : ", " : "") + v).join("");
}
//# sourceMappingURL=oxford-comma-list.js.map