(predicate: (value: Action) => boolean)
| 142 | return false; |
| 143 | } |
| 144 | find(predicate: (value: Action) => boolean): Action | null { |
| 145 | return this._actions.find(predicate) || null; |
| 146 | } |
| 147 | forEach(fn: (value: Action, index: number, array: Action[]) => void, thisArg?: {}): void { |
| 148 | this._actions.forEach(fn, thisArg); |
| 149 | } |
no outgoing calls
no test coverage detected