Sha256: 297357141b90853a812c061236ad70b80492103ba38ec4022c9c4213b255fc72
Contents?: true
Size: 311 Bytes
Versions: 40
Compression:
Stored size: 311 Bytes
Contents
if (!String.prototype.includes) { String.prototype.includes = function(search, start) { 'use strict'; if (typeof start !== 'number') { start = 0; } if (start + search.length > this.length) { return false; } else { return this.indexOf(search, start) !== -1; } }; }
Version data entries
40 entries across 40 versions & 1 rubygems