UNPKG

@mazix/n8n-nodes-converter-documents

Version:

n8n node to convert various document formats (DOCX, DOC, XML, YML, XLSX, CSV, PDF, TXT, PPT, PPTX, HTML, JSON, ODT, ODP, ODS) to JSON or text format

16 lines 495 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.numberToColumn = numberToColumn; /** * Конвертация номера колонки в букву (A, B, C... Z, AA, AB...) */ function numberToColumn(num) { let result = ''; while (num > 0) { num--; // Делаем 0-based result = String.fromCharCode(65 + (num % 26)) + result; num = Math.floor(num / 26); } return result; } //# sourceMappingURL=columns.js.map