@omnigraph/neo4j
Version:
25 lines (24 loc) • 926 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.polyfillStrReplaceAll = polyfillStrReplaceAll;
exports.revertStrReplaceAllPolyfill = revertStrReplaceAllPolyfill;
let strReplaceAllPolyfilled = false;
function polyfillStrReplaceAll() {
if (!String.prototype.replaceAll) {
strReplaceAllPolyfilled = true;
// eslint-disable-next-line no-extend-native
String.prototype.replaceAll = function (str, newStr) {
if (Object.prototype.toString.call(str).toLowerCase() === '[object regexp]') {
return this.replace(str, newStr);
}
return this.replace(new RegExp(str, 'g'), newStr);
};
}
}
function revertStrReplaceAllPolyfill() {
if (strReplaceAllPolyfilled) {
strReplaceAllPolyfilled = false;
// eslint-disable-next-line no-extend-native
delete String.prototype.replaceAll;
}
}
;