Let's say I want to call fetch
but I want to be sure it's the native one provided by the browser. Is it possible to determine that somehow? If it's been replaced for example:
window.fetch = function() { alert('not real'); }
Can I access the "real" one via the Window
prototype? If so, is the prototype mutable?