deno.land / std@0.224.0 / path / _common / from_file_url.ts
1234567891011// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
export function assertArg(url: URL | string) { url = url instanceof URL ? url : new URL(url); if (url.protocol !== "file:") { throw new TypeError("Must be a file URL."); } return url;}
Version Info