"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = normalizeText; function normalizeText(txt) { return txt .replace(/\n|\r|\n\r/g, " ") .replace(/ {2,}/g, " ") .trim(); }