MCPcopy Index your code
hub / github.com/QwikDev/qwik / isAbsolute

Function isAbsolute

packages/qwik/src/optimizer/src/path.ts:196–199  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

194 };
195
196 const isAbsolute = function isAbsolute(path: string) {
197 assertPath(path);
198 return path.length > 0 && path.charCodeAt(0) === 47 /*/*/;
199 };
200
201 const join = function join(...paths: string[]) {
202 if (paths.length === 0) {

Callers 4

createNodeMainProcessFunction · 0.85
normalizeOptionsFunction · 0.85
validatePluginFunction · 0.85
validateOptionsFunction · 0.85

Calls 1

assertPathFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…