(array, el)
| 198 | // @function indexOf(array: Array, el: Object): Number |
| 199 | // Compatibility polyfill for [Array.prototype.indexOf](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf) |
| 200 | function indexOf(array, el) { |
| 201 | for (var i = 0; i < array.length; i++) { |
| 202 | if (array[i] === el) { return i; } |
| 203 | } |
| 204 | return -1; |
| 205 | } |
| 206 | |
| 207 | // @property emptyImageUrl: String |
| 208 | // Data URI string containing a base64-encoded empty GIF image. |
no outgoing calls
no test coverage detected