mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-02-16 05:03:49 +00:00
wip
This commit is contained in:
parent
7de0355f3a
commit
ee6ff28af5
11 changed files with 157 additions and 95 deletions
|
|
@ -1,3 +1,8 @@
|
|||
export function normalize(pathString: string) {
|
||||
/**
|
||||
* Normalizes a path string, but not as complicated as Node's `path.normalize`.
|
||||
* This simply changes all backslashes to `/` (regardless of platform) and
|
||||
* collapses any adjacent slashes to a single slash.
|
||||
*/
|
||||
export function normalizePath(pathString: string) {
|
||||
return pathString.replace(/\\/g, "/").replace(/\/+/g, "/");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue