(snippetId: number, contentId: number)
| 109 | } |
| 110 | |
| 111 | function isContentUpdateBusy(snippetId: number, contentId: number) { |
| 112 | const key = getContentUpdateKey(snippetId, contentId) |
| 113 | return ( |
| 114 | updateContentQueue.value.has(key) || inFlightContentKeys.value.has(key) |
| 115 | ) |
| 116 | } |
| 117 | |
| 118 | function hasBusyContentUpdates() { |
| 119 | return ( |
nothing calls this directly
no test coverage detected