function ImageBase() { }
n/a
function defaultFilter(r, g, b, a) { return a >= 125 && !(r > 250 && g > 250 && b > 250); }
function PQueue(comparator) { this._comparator = comparator; this.contents = []; this._sorted = false; }