5 lines
138 B
TypeScript
Executable File
5 lines
138 B
TypeScript
Executable File
export function isRelativePath(path: string) {
|
|
return !path.startsWith("/") &&
|
|
(path.startsWith("./") || path.startsWith("../"));
|
|
}
|