(value)
| 68 | } |
| 69 | }; |
| 70 | const push = (value) => { |
| 71 | const url = normalizeJdImageUrl(value); |
| 72 | if (url && url.includes('360buyimg.com')) |
| 73 | urls.push(url); |
| 74 | }; |
| 75 | for (const img of root.querySelectorAll?.('img') || []) { |
| 76 | if (isIgnoredContext(img)) |
| 77 | continue; |
no test coverage detected