mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 08:04:49 +01:00
7 lines
280 B
JavaScript
7 lines
280 B
JavaScript
|
self.isFetchOverridden = () =>
|
||
|
self.fetch.toString().includes('rewriteFetchApi');
|
||
|
self.isImportScriptOverridden = () =>
|
||
|
self.importScripts.toString().includes('rewriteArgs');
|
||
|
self.isAjaxRewritten = () =>
|
||
|
self.XMLHttpRequest.prototype.open.toString().includes('rewriteURL');
|