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.
Completed
Push — master ( b989f0...d2d83e )
by Greg
23s queued 10s
created

src/js/random.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 3
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
mnd 0
bc 0
fnc 1
dl 0
loc 3
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
const generateRandomIdString = prefix => Math.random().toString(36).replace('0.', prefix || '');
2
3
export default generateRandomIdString;
4