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 bb8be75 commit ccd29f5Copy full SHA for ccd29f5
src/loading-attribute-polyfill.js
@@ -50,7 +50,7 @@ if ('IntersectionObserver' in window) {
50
* @param {String} urlString The URL to remove the URL query parts from
51
*/
52
function removeLazyPolyfillURLParts(urlString) {
53
- let url = new URL(urlString);
+ const url = new URL(urlString);
54
let params = url.searchParams;
55
56
params.delete('loading');
0 commit comments