@zohodesk/client_build_tool
Version:
A CLI tool to build web applications and client libraries
11 lines (10 loc) • 340 B
JavaScript
// --inspect-brk
function polyfillForOldNodeVersion() {
if (!String.prototype.replaceAll) {
// eslint-disable-next-line no-extend-native
String.prototype.replaceAll = function replaceAll(replacer, value) {
return this.split(replacer).join(value);
};
}
}
exports.polyfillForOldNodeVersion = polyfillForOldNodeVersion;