UNPKG

@accounter/server

Version:
15 lines 395 B
/** * Fixed-width decoding utilities */ /** * Decodes a fixed-width string value * * @param line - The line to decode from * @param start - Start position (0-based) * @param length - Field length * @returns Decoded and trimmed value */ export function decodeFixedWidth(line, start, length) { return line.substring(start, start + length).trim(); } //# sourceMappingURL=decoder.js.map