@augment-vir/common
Version:
A collection of augments, helpers types, functions, and classes for any JavaScript environment.
9 lines (8 loc) • 345 B
TypeScript
/**
* Sanitize a file path for use within Linux, macOS, or Windows file systems.
*
* @category Path : Common
* @category Package : @augment-vir/common
* @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
*/
export declare function sanitizeFilePath(original: string | null | undefined): string | undefined;