(array, value)
| 303 | return document.createElement('canvas'); |
| 304 | }; |
| 305 | function indexOf(array, value) { |
| 306 | if (array) { |
| 307 | if (array.indexOf) { |
| 308 | return array.indexOf(value); |
| 309 | } |
| 310 | for (var i = 0, len = array.length; i < len; i++) { |
| 311 | if (array[i] === value) { |
| 312 | return i; |
| 313 | } |
| 314 | } |
| 315 | } |
| 316 | return -1; |
| 317 | } |
| 318 | function inherits(clazz, baseClazz) { |
| 319 | var clazzPrototype = clazz.prototype; |
| 320 | function F() { } |
no outgoing calls
no test coverage detected
searching dependent graphs…