// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.exportfunctionassertArg(url) {
url = url instanceofURL ? url : newURL(url);
if (url.protocol !== "file:") {
thrownewTypeError("Must be a file URL.");
}
return url;
}