UNPKG

bahtrext

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