purs-pkg-deps
Version:
Query package dependencies in PureScript package-sets
52 lines (40 loc) • 1.07 kB
JavaScript
;
exports.rowIndex = function (row) {
return function () {
return row.rowIndex;
};
};
// ----------------------------------------------------------------------------
exports.sectionRowIndex = function (row) {
return function () {
return row.sectionRowIndex;
};
};
// ----------------------------------------------------------------------------
exports.cells = function (row) {
return function () {
return row.cells;
};
};
// ----------------------------------------------------------------------------
exports.cells = function (row) {
return function () {
return row.cells;
};
};
// ----------------------------------------------------------------------------
exports.insertCellAt = function (index) {
return function (row) {
return function () {
return row.insertCell(index);
};
};
};
// ----------------------------------------------------------------------------
exports.deleteCell = function (index) {
return function (row) {
return function () {
row.deleteCell(index);
};
};
};