@metreeca/core - v0.9.22
    Preparing search index...

    Variable appConst

    app: { "": string } & { readonly [key: string]: string } = ...

    Application namespace.

    An open Namespace rooted at the synthetic app:/ origin, minting absolute IRIs for resources that are local to a single application and have no deployment origin of their own. Terms are appended to the fragment component, so generated IRIs are "hierarchical" identifiers sharing the app:/ base.

    Lacking an authority component, app: IRIs are assigned an opaque origin: internalize and relativize match them by scheme and report same-scheme references as root-relative paths, rather than as the path-relative references origin-backed schemes such as http: would yield.

    app[""];                              // IRI: "app:/#"
    app.label; // IRI: "app:/#label"

    getIRIBase(app.label); // "app:/"
    resolve(app[""], "x/y"); // "app:/x/y"
    relativize("app:/a/b", "app:/a/c"); // "/a/c" (root-relative, not "c")