This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
var global; | |
if (typeof window == 'object') { | |
global = window; | |
} else if (typeof exports == 'object') { | |
global = exports; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export FC31="\[\033[31m\]" | |
export FC32="\[\033[32m\]" | |
export FC33="\[\033[33m\]" | |
export FC34="\[\033[34m\]" | |
export FC35="\[\033[35m\]" | |
export FC36="\[\033[36m\]" | |
export FC37="\[\033[37m\]" | |
export FC38="\[\033[38m\]" | |
export FC39="\[\033[39m\]" | |
export FC5="\[\033[5m\]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(scope) { | |
function cmp(a, b, mul) { | |
return (a == b ? 0 : (a < b ? -1 : 1)) * mul; | |
} | |
function ocmp() { | |
var _sorting = [].slice.call(arguments).filter(function(v) { | |
return v != null; | |
}).map(function(v) { | |
if (typeof v == 'string') { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
final class Perfbasta | |
{ | |
private static $instance = null; | |
private $outputFile = ''; | |
private $outputStream = null; | |
private $debugBacktraceArg1 = false; | |
private $outputStreamSupportsLocking = false; |