Re: [whatwg/fetch] Make fetch() use "same-origin" credentials by default (#585)

I want to make sure that we can block sending credentials by appropriately filtering the request. 

For example, if we shadow "fetch" with safe_fetch:
function safe_fetch(url, init) { return fetch(arguments[0], { credentials: 'omit' } ); }
then this will always block sending credentials in every browser, correct?


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/pull/585#issuecomment-325838718

Received on Wednesday, 30 August 2017 00:04:12 UTC