/** * Utilities for working with Windows-specific paths. * * ```ts * import { fromFileUrl } from "@std/path/windows/from-file-url"; * import { equal } from "@std/assert"; * * equal(fromFileUrl("file:///home/foo"), "\\home\\foo"); * ``` * * @module */ export * from "./basename.js"; export * from "./constants.js"; export * from "./dirname.js"; export * from "./extname.js"; export * from "./format.js"; export * from "./from_file_url.js"; export * from "./is_absolute.js"; export * from "./join.js"; export * from "./normalize.js"; export * from "./parse.js"; export * from "./relative.js"; export * from "./resolve.js"; export * from "./to_file_url.js"; export * from "./to_namespaced_path.js"; export * from "./common.js"; export * from "../types.js"; export * from "./glob_to_regexp.js"; export * from "./is_glob.js"; export * from "./join_globs.js"; export * from "./normalize_glob.js";