(declaration)
| 296 | |
| 297 | return { |
| 298 | Declaration(declaration) { |
| 299 | const { isSupportDataURL, isSupportAbsoluteURL } = options; |
| 300 | const parsedURL = parseDeclaration(declaration, "value", result, { |
| 301 | isSupportDataURL, |
| 302 | isSupportAbsoluteURL, |
| 303 | }); |
| 304 | |
| 305 | if (!parsedURL) { |
| 306 | return; |
| 307 | } |
| 308 | |
| 309 | parsedDeclarations.push(...parsedURL); |
| 310 | }, |
| 311 | async OnceExit() { |
| 312 | if (parsedDeclarations.length === 0) { |
| 313 | return; |
nothing calls this directly
no test coverage detected
searching dependent graphs…