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.Max = void 0;
var Max = /** @class */ (function () {
function Max() {
this.name = 'max';
}
Max.prototype.execute = function (cells) {
return cells
.select(function (x) { return x.value; })
.max();
};
return Max;
}());
exports.Max = Max;