* Check if object is an array * @param {any} a * @return {a is Array } * @memberof Math
(a)
| 309 | * @return {a is Array<any>} |
| 310 | * @memberof Math */ |
| 311 | function isArray(a) { return Array.isArray(a); } |
| 312 | |
| 313 | /** |
| 314 | * @callback LineTestFunction - Checks if a position is colliding |
no outgoing calls
no test coverage detected