UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

57 lines 1.95 kB
/** * Utilities for working with OS-specific file paths. * * Functions from this module will automatically switch to support the path style * of the current OS, either `windows` for Microsoft Windows, or `posix` for * every other operating system, eg. Linux, MacOS, BSD etc. * * To use functions for a specific path style regardless of the current OS * import the modules from the platform sub directory instead. * * Example, for `posix`: * * ```ts * import { fromFileUrl } from "@std/path/posix/from-file-url"; * const p = fromFileUrl("file:///home/foo"); * console.log(p); // "/home/foo" * ``` * * or, for `windows`: * * ```ts * import { fromFileUrl } from "@std/path/windows/from-file-url"; * const p = fromFileUrl("file:///home/foo"); * console.log(p); // "\\home\\foo" * ``` * * This module is browser compatible. * * @module */ import * as _windows from "./windows/mod.js"; import * as _posix from "./posix/mod.js"; /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/path/windows/mod.ts} instead. */ export declare const win32: typeof _windows; /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/path/posix/mod.ts} instead. */ export declare const posix: typeof _posix; 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 "./_interface.js"; export * from "./glob_to_regexp.js"; export * from "./is_glob.js"; export * from "./join_globs.js"; export * from "./normalize_glob.js"; //# sourceMappingURL=mod.d.ts.map