(x:string)
| 14 | (function dom_init():void { |
| 15 | "use strict"; |
| 16 | const id = function dom_id(x:string):any { |
| 17 | if (document.getElementById === undefined) { |
| 18 | return; |
| 19 | } |
| 20 | return document.getElementById(x); |
| 21 | }, |
| 22 | page = (function dom__dataPage():HTMLDivElement { |
| 23 | const divs:HTMLCollectionOf<HTMLDivElement> = document.getElementsByTagName("div"); |
| 24 | if (divs.length === 0) { |
no outgoing calls
no test coverage detected