node-ff
Version:
A CLI for creating NodeJs projects
15 lines • 451 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextHandling = void 0;
class TextHandling {
return_text(text_format, little_formatted) {
if (little_formatted) {
return text_format.toString().trim();
}
else {
return text_format.toString().replaceAll(' ', '').trim();
}
}
}
exports.TextHandling = TextHandling;
//# sourceMappingURL=TextHandling.js.map