Sha256: be81ab3e96cd0c8736dc208cacab91b418bc6af4f94ffad1da70035f8001fb6b
Contents?: true
Size: 246 Bytes
Versions: 33
Compression:
Stored size: 246 Bytes
Contents
// Array Remove - By John Resig (MIT Licensed) Array.prototype.remove = function(from, to) { var rest = this.slice((to || from) + 1 || this.length); this.length = from < 0 ? this.length + from : from; return this.push.apply(this, rest); };
Version data entries
33 entries across 33 versions & 1 rubygems