UNPKG

bahtrext

Version:
7 lines (6 loc) 161 B
export default (str, replaceWith = "", ...replaces) => { for (const regex of replaces) { str = str.replace(regex, replaceWith); } return str; };