image-js
Version:
Image processing and manipulation in JavaScript
23 lines (22 loc) • 427 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = min;
/**
* @memberof Stack
* @instance
* @return {number[]}
*/
function min() {
this.checkProcessable('min', {
bitDepth: [8, 16]
});
let min = this[0].min;
for (let i = 1; i < this.length; i++) {
for (let j = 0; j < min.length; j++) {
min[j] = Math.min(min[j], this[i].min[j]);
}
}
return min;
}