Skip to content

Instantly share code, notes, and snippets.

@ranwahle
Created October 25, 2018 08:12
Show Gist options
  • Save ranwahle/60fa7dd969e8277ee8aeb9d643156e1e to your computer and use it in GitHub Desktop.
Save ranwahle/60fa7dd969e8277ee8aeb9d643156e1e to your computer and use it in GitHub Desktop.
if (window.fetch) {
const origFetch = fetch;
fetch = function(url, options) {
if (!options) {
options = {};
}
// Adding the creadentials option
options.credentials = 'include';
// Calling the original fetch method with the credentials option
return origFetch(url, options);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment