// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible./**
* Resolves path to a namespace path
* @param path to resolve to namespace
*/exportfunctiontoNamespacedPath(path) {
// Non-op on posix systemsreturn path;
}