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