(result, beforeState, afterState)
| 234 | } |
| 235 | |
| 236 | function attachExecutionState(result, beforeState, afterState) { |
| 237 | return { |
| 238 | ...result, |
| 239 | ...(beforeState ? { before_state: beforeState } : {}), |
| 240 | ...(afterState ? { after_state: afterState } : {}), |
| 241 | }; |
| 242 | } |
| 243 | |
| 244 | module.exports = { |
| 245 | attachExecutionState, |
no outgoing calls
no test coverage detected