* Returns new location of data entries. * @returns {number} new location of data entries
()
| 256 | * @returns {number} new location of data entries |
| 257 | */ |
| 258 | _findLocation() { |
| 259 | /** @type {number} */ |
| 260 | let i; |
| 261 | for (i = 0; i < this.content.length && this.content[i] !== undefined; i++); |
| 262 | return i; |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Gc and update location. |
no outgoing calls
no test coverage detected