discord-bot-cli
Version:
An easy way to build a command-based discord bot with discord.js.
11 lines (10 loc) • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.template = void 0;
/** @internal */
function template(str, replaceValues) {
for (const key in replaceValues)
str = str.replace(new RegExp(`{{${key}}}`, "gi"), replaceValues[key]);
return str;
}
exports.template = template;