()
| 176 | } |
| 177 | |
| 178 | sort() { |
| 179 | let currentDisplayData = this.getCurrentDisplayData(); |
| 180 | |
| 181 | currentDisplayData = this._sort(currentDisplayData); |
| 182 | |
| 183 | return this; |
| 184 | } |
| 185 | |
| 186 | page(page, sizePerPage) { |
| 187 | this.pageObj.end = page * sizePerPage - 1; |
no test coverage detected