(key: string)
| 27 | static entries: {[key: string]: google.maps.Map[]} = {}; |
| 28 | |
| 29 | static has(key: string) { |
| 30 | return this.entries[key] && this.entries[key].length > 0; |
| 31 | } |
| 32 | |
| 33 | static pop(key: string) { |
| 34 | if (!this.entries[key]) return null; |
no outgoing calls
no test coverage detected