bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
13 lines • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Text = void 0;
var Text;
(function (Text) {
function UnQuote(text) {
if (text.length >= 2 && text.startsWith('"') && text.endsWith('"'))
return text.slice(1, text.length - 1);
return text;
}
Text.UnQuote = UnQuote;
})(Text || (exports.Text = Text = {}));
//# sourceMappingURL=text.js.map