Function toNamespacedPath

  • Resolves path to a namespace path. This is a no-op on non-windows systems.

    Parameters

    • path: string

      Path to resolve to namespace.

    Returns string

    The resolved namespace path.

    import { toNamespacedPath } from "@std/path/to-namespaced-path";
    import { assertEquals } from "@std/assert";

    if (Deno.build.os === "windows") {
    assertEquals(toNamespacedPath("C:\\foo\\bar"), "\\\\?\\C:\\foo\\bar");
    } else {
    assertEquals(toNamespacedPath("/foo/bar"), "/foo/bar");
    }