@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
15 lines • 494 B
TypeScript
//#region src/utils/normalizePath.d.ts
/**
* Normalize a path for glob by replacing backslashes with forward slashes
*
* Utils for Windows compatibility, as Glob pattern as `**\\*.js` is not supported
*
* C:\\Users\\John\\Desktop\\test.txt -> C:/Users/John/Desktop/test.txt
*
* @param path - The path to normalize
* @returns The normalized path
*/
declare const normalizePath: (path: string) => string;
//#endregion
export { normalizePath };
//# sourceMappingURL=normalizePath.d.ts.map