Skip to content

Instantly share code, notes, and snippets.

@gnarula
Created June 29, 2020 12:14
Show Gist options
  • Save gnarula/2a419cd1ab16cefbe5bbf5f593cc305a to your computer and use it in GitHub Desktop.
Save gnarula/2a419cd1ab16cefbe5bbf5f593cc305a to your computer and use it in GitHub Desktop.
URLSearchParams react-native override
// Place this at the top of index.js in your react-native project
delete global.URLSearchParams;
delete global.URL;
const pollyfillGlobal = require('react-native/Libraries/Utilities/PolyfillFunctions').polyfillGlobal;
pollyfillGlobal('URL', () => require('whatwg-url').URL);
pollyfillGlobal('URLSearchParams', () => require('whatwg-url').URLSearchParams);
global.URL = require('whatwg-url').URL;
global.URLSearchParams = require('whatwg-url').URLSearchParams;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment