Skip to content

Instantly share code, notes, and snippets.

@cawa-93
Created January 29, 2019 13:42
Show Gist options
  • Save cawa-93/620ab070b816c13fac18a5054683cbc7 to your computer and use it in GitHub Desktop.
Save cawa-93/620ab070b816c13fac18a5054683cbc7 to your computer and use it in GitHub Desktop.
Clear URL
/**
* @example
* const url = 'https://example.com/?query=val'
* const clearURL = new URL(url).clear('query').toString()
*/
URL.prototype.clear = function (...params) {
params.forEach(param => {
this.searchParams.delete(param)
})
return this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment