(action: Action)
| 45 | * Lifts an app's action into an action on the lifted store. |
| 46 | */ |
| 47 | export function liftAction(action: Action) { |
| 48 | return new Actions.PerformAction(action, +Date.now()); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Sanitizes given actions with given function. |
no outgoing calls
no test coverage detected