XMLHttpRequest.prototype.open = function()

in src/interceptors.ts [26:31]


XMLHttpRequest.prototype.open = function() {
  const args: any[] = [].slice.call(arguments).map((it, index) => index === 1 ? resolveRequestUri(it as ApiUri) : it);
    
  const func: { (...args: any[]): void } = globalOpen.bind(this);
  func(...args);
};