(workspaceId: string)
| 1 | export const prefixWorkspaceId = (workspaceId: string) => { |
| 2 | return workspaceId.startsWith("ws_") ? workspaceId : `ws_${workspaceId}`; |
| 3 | }; |
| 4 | |
| 5 | export const normalizeWorkspaceId = (workspaceId: string) => { |
| 6 | return workspaceId.startsWith("ws_c") |
no outgoing calls
no test coverage detected
searching dependent graphs…