// Copyright 2018-2026 the Deno authors. MIT license. // Copyright the Browserify authors. MIT License. export function assertPath(path?: string) { if (typeof path !== "string") { throw new TypeError( `Path must be a string, received "${JSON.stringify(path)}"`, ); } }