GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

src/reducers/components/plugins/pager.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 20
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 20
rs 10
bpm 0
cpm 0
noi 0
c 0
b 0
f 0
1
import { OrderedMap } from 'immutable';
2
3
import {
4
    PAGE_LOCAL,
5
    PAGE_REMOTE
6
} from '../../../constants/ActionTypes';
7
8
import handleActions from './../../../util/handleActions';
9
10
import {
11
    pageLocal,
12
    pageRemote
13
} from './../../actionHelpers/plugins/pager';
14
15
const initialState = new OrderedMap();
16
17
export default handleActions({
18
    [PAGE_LOCAL]: pageLocal,
19
    [PAGE_REMOTE]: pageRemote
20
}, initialState);
21