(event: Event)
| 197 | } |
| 198 | |
| 199 | export const isParameterizedReplaceableEvent = (event: Event): boolean => { |
| 200 | return ( |
| 201 | event.kind >= EventKinds.PARAMETERIZED_REPLACEABLE_FIRST && event.kind <= EventKinds.PARAMETERIZED_REPLACEABLE_LAST |
| 202 | ) |
| 203 | } |
| 204 | |
| 205 | export const isDeleteEvent = (event: Event): boolean => { |
| 206 | return event.kind === EventKinds.DELETE |
no outgoing calls
no test coverage detected