serwist
Version:
A Swiss Army knife for service workers.
12 lines • 508 B
TypeScript
/**
* Removes any URL search parameters that should be ignored.
*
* @param urlObject The original URL.
* @param ignoreURLParametersMatching RegExps to test against
* each search parameter name. Matches mean that the search parameter should be
* ignored.
* @returns The URL with any ignored search parameters removed.
* @private
*/
export declare const removeIgnoredSearchParams: (urlObject: URL, ignoreURLParametersMatching?: RegExp[]) => URL;
//# sourceMappingURL=removeIgnoredSearchParams.d.ts.map