MCPcopy Index your code
hub / github.com/sql-js/sql.js / isDataURI

Function isDataURI

js/sql-debug.js:1445–1449  ·  view source on GitHub ↗
(filename)

Source from the content-addressed store, hash-verified

1443
1444// Indicates whether filename is a base64 data URI.
1445function isDataURI(filename) {
1446 return String.prototype.startsWith ?
1447 filename.startsWith(dataURIPrefix) :
1448 filename.indexOf(dataURIPrefix) === 0;
1449}
1450
1451
1452

Callers 2

tryParseAsDataURIFunction · 0.70
sql-debug.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…