(str)
| 404 | } |
| 405 | |
| 406 | function fixedEncodeURIComponent(str) { |
| 407 | return str.replace(/[!'()*]/g, (c) => `%${c.charCodeAt(0).toString(16)}`); |
| 408 | } |
| 409 | |
| 410 | function isDataUrl(url) { |
| 411 | if (/^data:/i.test(url)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…