* Gets an array from the array pool or creates a new one if the pool is empty. * * @private * @returns {Array} The array from the pool.
()
| 35467 | * @returns {Array} The array from the pool. |
| 35468 | */ |
| 35469 | function getArray() { |
| 35470 | return arrayPool.pop() || []; |
| 35471 | } |
| 35472 | |
| 35473 | /** |
| 35474 | * Gets an object from the object pool or creates a new one if the pool is empty. |
no outgoing calls
no test coverage detected