| Total Complexity | 6 |
| Complexity/F | 1 |
| Lines of Code | 11 |
| Function Count | 6 |
| Duplicated Lines | 0 |
| Ratio | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | 4 | export const getPage = state => state.posts.page |
|
| 2 | |||
| 3 | 4 | export const getRowsPerPage = state => state.posts.rowsPerPage |
|
| 4 | |||
| 5 | 4 | export const getOrder = state => state.posts.order |
|
| 6 | |||
| 7 | 4 | export const getOrderColumn = state => state.posts.orderColumn |
|
| 8 | |||
| 9 | 4 | export const getSelectedPosts = state => state.posts.selectedPosts |
|
| 10 | |||
| 11 | export const getPosts = state => state.posts.posts |
||
| 12 |