// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// Copyright the Browserify authors. MIT License.exportfunctionassertPath(path) {
if (typeof path !== "string") {
thrownewTypeError(`Path must be a string. Received ${JSON.stringify(path)}`);
}
}