tlojs
Version:
The Last One - The last npm package you'll need to install
16 lines (15 loc) • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Min = void 0;
var Min = /** @class */ (function () {
function Min() {
this.name = 'min';
}
Min.prototype.execute = function (cells) {
return cells
.select(function (x) { return x.value; })
.min();
};
return Min;
}());
exports.Min = Min;