Sha256: d8ca63e08b85021c78f3cb73b37c6d58f36023c682893d040e50bcfc7f0bfbf4
Contents?: true
Size: 240 Bytes
Versions: 166
Compression:
Stored size: 240 Bytes
Contents
if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(obj, start) { for (var i = (start || 0), j = this.length; i < j; i++) { if (this[i] === obj) { return i; } } return -1; } }
Version data entries
166 entries across 94 versions & 1 rubygems