Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/fathym_atomic_icons/src/src.deps.ts>path.fromFileUrl

Fathym's Atomic Icons is a library that supports the optimized creation of customzied icon sets for delivery via Deno Fresh.
Go to Latest
function path.fromFileUrl
import { path } from "https://deno.land/x/fathym_atomic_icons@v0.0.32/src/src.deps.ts";
const { fromFileUrl } = path;

Converts a file URL to a path string.

import { fromFileUrl } from "https://deno.land/std@0.224.0/path/from_file_url.ts";

// posix
fromFileUrl("file:///home/foo"); // "/home/foo"

// win32
fromFileUrl("file:///home/foo"); // "\\home\\foo"
fromFileUrl("file:///C:/Users/foo"); // "C:\\Users\\foo"
fromFileUrl("file://localhost/home/foo"); // "\\\\localhost\\home\\foo"

Parameters

url: string | URL

of a file URL

Returns

string