purs-pkg-deps
Version:
Query package dependencies in PureScript package-sets
28 lines (22 loc) • 562 B
JavaScript
;
exports.rows = function (section) {
return function () {
return section.rows;
};
};
// ----------------------------------------------------------------------------
exports.insertRowAt = function (index) {
return function (section) {
return function () {
return section.insertRow(index);
};
};
};
// ----------------------------------------------------------------------------
exports.deleteRow = function (index) {
return function (section) {
return function () {
section.deleteRow(index);
};
};
};