UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

10 lines (9 loc) 309 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. export function assertArg(url) { url = url instanceof URL ? url : new URL(url); if (url.protocol !== "file:") { throw new TypeError("Must be a file URL."); } return url; }