Repository URL to install this package:
|
Version:
7.0.10 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function stringCleaner(str) {
return str ? str.replace(/\s+/g, '').replace(/\n+/g, '') : str;
}
exports.stringCleaner = stringCleaner;