()
| 31418 | return this.getType('selectors') |
| 31419 | } |
| 31420 | getActions() { |
| 31421 | return objMap(this.getType('actions'), (s) => |
| 31422 | objReduce(s, (s, o) => { |
| 31423 | if (isFn(s)) return { [o]: s } |
| 31424 | }) |
| 31425 | ) |
| 31426 | } |
| 31427 | getWrappedAndBoundActions(s) { |
| 31428 | return objMap(this.getBoundActions(s), (s, o) => { |
| 31429 | let i = this.system.statePlugins[o.slice(0, -7)].wrapActions |
no test coverage detected