(f)
| 199 | |
| 200 | // add a new fitty, does not redraw said fitty |
| 201 | const subscribe = (f) => () => { |
| 202 | if (f.active) return; |
| 203 | f.active = true; |
| 204 | requestRedraw(); |
| 205 | }; |
| 206 | |
| 207 | // remove an existing fitty |
| 208 | const unsubscribe = (f) => () => (f.active = false); |
no outgoing calls
no test coverage detected
searching dependent graphs…