(operation: string)
| 37 | ]; |
| 38 | |
| 39 | const isWriteOperation = (operation: string) => |
| 40 | WRITE_OPERATIONS.includes(operation as Operation); |
| 41 | |
| 42 | const isReadOperation = (operation: string) => |
| 43 | READ_OPERATIONS.includes(operation as Operation); |
no outgoing calls
no test coverage detected