Skip to content

Instantly share code, notes, and snippets.

@PhoneDroid
Created June 13, 2023 12:36
Show Gist options
  • Select an option

  • Save PhoneDroid/09dcd55b2c1bed4e807b223a117d167b to your computer and use it in GitHub Desktop.

Select an option

Save PhoneDroid/09dcd55b2c1bed4e807b223a117d167b to your computer and use it in GitHub Desktop.
const { fetch } = window
    
window.fetch = async ( ... args ) => {

    let [ url , config ] = args

    console.log('Fetching',url,config)

    return await fetch( ... args )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment