()
| 101 | class BuildLists { |
| 102 | |
| 103 | constructor () { |
| 104 | // Where our lists are stored |
| 105 | this.lists = {} |
| 106 | |
| 107 | this.endpointMaps = { |
| 108 | // Where Nuxt Routes and Payloads get stored |
| 109 | nuxt: new Map(), |
| 110 | |
| 111 | // Where Eleventy Endpoints get stored |
| 112 | eleventy: new Map() |
| 113 | } |
| 114 | |
| 115 | this.allVideoAppsList = new Set() |
| 116 | } |
| 117 | |
| 118 | listsOptions = [ |
| 119 |
nothing calls this directly
no outgoing calls
no test coverage detected