10 lines
243 B
JavaScript
10 lines
243 B
JavaScript
"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();
|
|
}
|