datasquirel/package-shared/functions/backend/db/pathTraversalCheck.ts

8 lines
187 B
TypeScript
Raw Normal View History

2025-01-10 19:10:28 +00:00
/**
* # Path Traversal Check
* @returns {string}
*/
export default function pathTraversalCheck(text: string | number): string {
return text.toString().replace(/\//g, "");
}