(changes: Array<any> = [])
| 85 | const id = `mock-col-` + Math.random().toString(36).slice(2) |
| 86 | |
| 87 | const notify = (changes: Array<any> = []) => { |
| 88 | for (const cb of subs) cb(changes) |
| 89 | } |
| 90 | |
| 91 | const notifyReady = () => { |
| 92 | for (const cb of readySubs) cb() |
no outgoing calls
no test coverage detected
searching dependent graphs…