postel-ita
Version:
Library to create files compatible with italian Poste Postel system
17 lines • 543 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const Lang_1 = __importDefault(require("./Lang"));
class Payments extends Array {
result() {
const rows = [];
this.forEach(payment => {
rows.push(payment.result());
});
return rows.join(Lang_1.default.EOL);
}
}
exports.default = Payments;
//# sourceMappingURL=Payments.js.map