@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
13 lines • 412 B
JavaScript
;
/**
* @param Returns a string resulting from replacing all the occurrences of substr in target by repstr
* @param replaceString
* @return string
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.replace = void 0;
const replace = (target, substr, repstr) => {
return target.replaceAll(substr, repstr);
};
exports.replace = replace;
//# sourceMappingURL=replace.js.map