(node: AstNode)
| 67 | } |
| 68 | |
| 69 | export function isAuthInvocation(node: AstNode) { |
| 70 | return isInvocationExpr(node) && node.function.ref?.name === 'auth' && isFromStdlib(node.function.ref); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Try getting string value from a potential string literal expression |
no test coverage detected