deno.land / std@0.224.0 / path / posix / to_namespaced_path.ts

View Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// 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 */export function toNamespacedPath(path: string): string { // Non-op on posix systems return path;}
std

Version Info

Tagged at
4 months ago