(comics)
| 184 | var currentComics = []; |
| 185 | |
| 186 | function setCurrentComics(comics) |
| 187 | { |
| 188 | currentComics = {}; |
| 189 | |
| 190 | for(let key in comics) |
| 191 | { |
| 192 | currentComics[comics[key].index] = comics[key]; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | function applyMangaReading(distribution) |
| 197 | { |
no outgoing calls
no test coverage detected