(filename)
| 1443 | |
| 1444 | // Indicates whether filename is a base64 data URI. |
| 1445 | function isDataURI(filename) { |
| 1446 | return String.prototype.startsWith ? |
| 1447 | filename.startsWith(dataURIPrefix) : |
| 1448 | filename.indexOf(dataURIPrefix) === 0; |
| 1449 | } |
| 1450 | |
| 1451 | |
| 1452 |
no outgoing calls
no test coverage detected
searching dependent graphs…