/**
* @param Returns a string resulting from replacing all the occurrences of substr in target by repstr
* @paramreplaceString
* @returnstring
*/exportconstreplace = (target, substr, repstr) => {
return target.replaceAll(substr, repstr);
};
//# sourceMappingURL=replace.js.map