mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
const SAFE_PATH_RULE = /^(\.(?:[_a-zA-Z][a-zA-Z\d_]*|\0|[1-9]\d*))+$/u;
|
|
|
|
export const isSafePath = (path: string): boolean => {
|
|
return SAFE_PATH_RULE.test(path);
|
|
};
|