lquixada / cross-fetch

Universal WHATWG Fetch API for Node, Browsers and React Native.
MIT License
1.67k stars 104 forks source link

error handling #47

Closed roccomuso closed 5 years ago

roccomuso commented 5 years ago

Are errors handled the same way between node-fetch and whatwg-fetch? Do this lib ensure this?

lquixada commented 5 years ago

No, this lib is only a proxy. The errors should be handled the same way since both node-fetch and whatwg-fetch implements a common subset of the standard Fetch specification.

roccomuso commented 5 years ago

ok thanks