Sha256: e0fc6f7618c424b526d23af055d4efda65db880961795bfeb4b492293eed04db
Contents?: true
Size: 730 Bytes
Versions: 1
Compression:
Stored size: 730 Bytes
Contents
if (window.MooTools) { Array.implement({ getFirst: function(n){ return (n || n === 0) ? this.slice(0, n) : this[0] }, getLast: function(n){ if (n >= this.length) return this return (n || n === 0) ? this.slice(this.length - n, this.length) : this[this.length - 1] }, deleteIf: function(fn){ for (var i = 0, length = this.length; i < length; i++) { var el = this.shift() if (!fn.call(el)) this.push(el) } return this } }) Array.alias('first', 'getFirst') Array.alias('last', 'getLast') Array.alias('select', 'filter') Array.alias('compact', 'clean') } else { if (console && console.error) console.error('Mootools is not yet installed.') }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mootools-plus-0.1.4 | vendor/assets/javascripts/mootools-plus/array.js |