(object)
| 59381 | if (!condition) throw new Error(message || "luma.gl: assertion failed."); |
| 59382 | } |
| 59383 | function isObjectEmpty(object) { |
| 59384 | for(var key in object)return false; |
| 59385 | return true; |
| 59386 | } |
| 59387 | function deepArrayEqual(x, y) { |
| 59388 | if (x === y) return true; |
| 59389 | var isArrayX = Array.isArray(x) || ArrayBuffer.isView(x); |
nothing calls this directly
no outgoing calls
no test coverage detected