@vulcan-sql/core
Version:
Core package of VulcanSQL
11 lines • 419 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isOffsetPagination = void 0;
const lodash_1 = require("lodash");
function isOffsetPagination(pagination) {
return (pagination &&
!(0, lodash_1.isUndefined)(pagination.limit) &&
!(0, lodash_1.isUndefined)(pagination.offset));
}
exports.isOffsetPagination = isOffsetPagination;
//# sourceMappingURL=pagination.js.map