docs: Fix JSDoc

This commit is contained in:
Aaron
2026-02-08 08:03:46 -06:00
parent 3a3953edf6
commit 6ae5fb5edb
+2 -2
View File
@@ -2,8 +2,8 @@ import systemPath from 'node:path';
import normalize from 'normalize-path';
/**
* Converts system paths to normalized bundler path.\
* On Windows and Unix, this returns paths with `/` instead of `\`.
* Converts system paths to normalized bundler path.
* On Windows, this returns paths with `/` instead of `\`.
*/
export function normalizePath(path: string): string {
return normalize(path);