"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Get whether it is the first item of the page
*
* @param rowIndex
* @param pageSize
* @category pagination
* @module isPageLeadingItem
*/
var isPageLeadingItem = function (rowIndex, pageSize) { return rowIndex % pageSize === 0; };
exports.default = isPageLeadingItem;
Source