import { Path } from "https://deno.land/x/yxz@0.17.0/path/path.ts";
Returns path relative to import.meta
.
Note: As hosted script don't reoslve to file system path, library should avoid this method.
Examples
Example 1
Example 1
import { Path } from "https://deno.land/x/yxz/path/path.ts";
Path.fromImportMeta(import.meta) // current file path
Path.fromImportMeta(import.meta, ".") // current directory path
Parameters
importMeta: ImportMeta