(src: string)
| 5327 | } |
| 5328 | |
| 5329 | function getScriptKey(src: string): string { |
| 5330 | const limitedEscapedSrc = escapeSelectorAttributeValueInsideDoubleQuotes(src); |
| 5331 | return `[src="${limitedEscapedSrc}"]`; |
| 5332 | } |
| 5333 | |
| 5334 | function getScriptSelectorFromKey(key: string): string { |
| 5335 | return 'script[async]' + key; |
no test coverage detected