mirror of
https://github.com/ncipollo/release-action
synced 2026-09-07 20:04:03 +00:00
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import path from "path"
|
|
|
|
export class PathNormalizer {
|
|
static normalizePath(pathString: string): string {
|
|
return pathString.split(path.sep).join("/")
|
|
}
|
|
}
|