kcscDev/egovframe-template-simple-r.../src/utils/calc.js

1 line
137 B
JavaScript
Raw Normal View History

2023-10-12 04:15:42 +00:00
export const itemIdxByPage = (resultCnt, currentPageNo, pageSize, index) => resultCnt + 1 - ((currentPageNo - 1) * pageSize + index + 1);