!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/gnome-js/   drwxr-xr-x
Free 130.06 GB of 142.11 GB (91.52%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     ArrayUtils.js (3.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
if (!Array.prototype.filter){
	Array.prototype.filter = function(fun){
	    var len = this.length >>> 0;
	    if (typeof fun != "function")
		throw new TypeError();

	    var res = new Array();
	    var thisp = arguments[1];
	    for (var i = 0; i < len; i++){
		if (i in this){
		    var val = this[i]; 
		    if (fun.call(thisp, val, i, this))
			res.push(val);
		}
	    }
	    
	    return res;
	};
    }

if (!Array.prototype.forEach){
    Array.prototype.forEach = function(fun){
	var len = this.length >>> 0;
	if (typeof fun != "function")
	    throw new TypeError();
	
	var thisp = arguments[1];
	for (var i = 0; i < len; i++){
	    if (i in this)
		fun.call(thisp, this[i], i, this);
	}
    };
}

if (!Array.prototype.every){
    Array.prototype.every = function(fun /*, thisp*/){
	var len = this.length >>> 0;
	if (typeof fun != "function")
	    throw new TypeError();

	var thisp = arguments[1];
	for (var i = 0; i < len; i++){
	    if (i in this &&
		!fun.call(thisp, this[i], i, this))
		return false;
	}

	return true;
    };
}


if (!Array.prototype.map){
    Array.prototype.map = function(fun /*, thisp*/){
	var len = this.length >>> 0;
	if (typeof fun != "function")
	    throw new TypeError();

	var res = new Array(len);
	var thisp = arguments[1];
	for (var i = 0; i < len; i++){
	    if (i in this)
		res[i] = fun.call(thisp, this[i], i, this);
	}

	return res;
    };
}

if (!Array.prototype.some){
    Array.prototype.some = function(fun /*, thisp*/){
	var i = 0,
        len = this.length >>> 0;

	if (typeof fun != "function")
	    throw new TypeError();

	var thisp = arguments[1];
	for (; i < len; i++){
	    if (i in this &&
		fun.call(thisp, this[i], i, this))
		return true;
	}

	return false;
    };
}

if (!Array.prototype.reduce){
    Array.prototype.reduce = function(fun /*, initial*/){
	var len = this.length >>> 0;
	if (typeof fun != "function")
	    throw new TypeError();

	// no value to return if no initial value and an empty array
	if (len == 0 && arguments.length == 1)
	    throw new TypeError();

	var i = 0;
	if (arguments.length >= 2){
	    var rv = arguments[1];
	}
	else{
	    do{
		if (i in this){
		    rv = this[i++];
		    break;
		}

		// if array contains no values, no initial value to return
		if (++i >= len)
		    throw new TypeError();
	    }
	    while (true);
	}

	for (; i < len; i++){
	    if (i in this)
		rv = fun.call(null, rv, this[i], i, this);
	}

	return rv;
    };
}

if (!Array.prototype.reduceRight){
    Array.prototype.reduceRight = function(fun /*, initial*/){
	var len = this.length >>> 0;
	if (typeof fun != "function")
	    throw new TypeError();

	// no value to return if no initial value, empty array
	if (len == 0 && arguments.length == 1)
	    throw new TypeError();

	var i = len - 1;
	if (arguments.length >= 2){
	    var rv = arguments[1];
	}
	else{
	    do{
		if (i in this){
		    rv = this[i--];
		    break;
		}

		// if array contains no values, no initial value to return
		if (--i < 0)
		    throw new TypeError();
	    }
	    while (true);
	}

	for (; i >= 0; i--){
	    if (i in this)
		rv = fun.call(null, rv, this[i], i, this);
	}

	return rv;
    };
}



:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.022 ]--