qq-official-bot
Version:
20 lines (19 loc) • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.trimQuote = void 0;
const trimQuote = (str) => {
const quotes = [
['"', '"'],
["'", "'"],
['`', '`'],
['"', '"'],
['', ', ', '']
];
for (const [start, end] of quotes) {
if (str.startsWith(start) && str.endsWith(end)) {
return str.slice(1, -1);
}
}
return str;
};
exports.trimQuote = trimQuote;