(arr)
| 181 | FORMAT_SIZES_SPECIAL[GL_COMPRESSED_RGB_ETC1_WEBGL] = 0.5 |
| 182 | |
| 183 | function isNumericArray (arr) { |
| 184 | return ( |
| 185 | Array.isArray(arr) && |
| 186 | (arr.length === 0 || |
| 187 | typeof arr[0] === 'number')) |
| 188 | } |
| 189 | |
| 190 | function isRectArray (arr) { |
| 191 | if (!Array.isArray(arr)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…