()
| 143 | |
| 144 | // Consider big data, do not create map until needed. |
| 145 | private _getOrCreateMap(): HashMap<OrdinalNumber> { |
| 146 | return this._map || ( |
| 147 | this._map = createHashMap<OrdinalNumber>(this.categories) |
| 148 | ); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | function getName(obj: any): string { |
no outgoing calls
no test coverage detected