MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / isSystemURI

Function isSystemURI

packages/core/utils/common.ts:105–110  ·  view source on GitHub ↗
(uri: string)

Source from the content-addressed store, hash-verified

103}
104
105export function isSystemURI(uri: string): boolean {
106 if (!types.isString(uri)) {
107 return false;
108 }
109 return uri.trim().startsWith(SYSTEM_PREFIX);
110}
111
112export function isDataURI(uri: string): boolean {
113 if (!types.isString(uri)) {

Callers 1

_getIconMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected