We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd29f5 commit 689290bCopy full SHA for 689290b
src/loading-attribute-polyfill.js
@@ -51,11 +51,11 @@ if ('IntersectionObserver' in window) {
51
*/
52
function removeLazyPolyfillURLParts(urlString) {
53
const url = new URL(urlString);
54
- let params = url.searchParams;
+ let parameters = url.searchParams;
55
56
- params.delete('loading');
57
- params.delete('image-width');
58
- params.delete('image-height');
+ parameters.delete('loading');
+ parameters.delete('image-width');
+ parameters.delete('image-height');
59
60
return url.href;
61
}
0 commit comments