Files
2026-08-18 11:35:51 +01:00

7 lines
283 B
TypeScript

import type {} from "@trigger.dev/database";
// Only allow alphanumeric characters, underscores, hyphens, and slashes (and only the first 128 characters)
export function sanitizeQueueName(queueName: string) {
return queueName.replace(/[^a-zA-Z0-9_\-/]/g, "").substring(0, 128);
}