datasquirel/package-shared/functions/backend/db/pathTraversalCheck.ts
2025-01-10 20:10:28 +01:00

8 lines
187 B
TypeScript

/**
* # Path Traversal Check
* @returns {string}
*/
export default function pathTraversalCheck(text: string | number): string {
return text.toString().replace(/\//g, "");
}