postel-ita
Version:
Library to create files compatible with italian Poste Postel system
19 lines • 579 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const PostelRow_1 = __importDefault(require("./Syntax/PostelRow"));
class Lang {
}
Lang.EOL = '\r\n';
Lang.newLine = (jumpLineCount) => {
if (jumpLineCount === 0)
return '';
return 'SPA ' + jumpLineCount.toString();
};
Lang.PostelRow = (opt) => {
return new PostelRow_1.default(opt);
};
exports.default = Lang;
//# sourceMappingURL=Lang.js.map