Sha256: 55b186cecc92d7aad81b32958442593f417ff6ba23e47b5933921ce930772b09
Contents?: true
Size: 257 Bytes
Versions: 321
Compression:
Stored size: 257 Bytes
Contents
// https://gist.github.com/heathcliff/7161329 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
321 entries across 321 versions & 1 rubygems