Passed
Push — master ( c4d61c...59bf76 )
by Kolja
01:06
created

common.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 9
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 1
eloc 5
c 0
b 0
f 0
nc 1
mnd 0
bc 1
fnc 1
dl 0
loc 9
rs 10
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A ➔ ??? 0 3 1
1
const fastClone = require('fast-clone');
2
3
const cloneObject = (obj) => {
4
    return fastClone(obj);
5
};
6
7
module.exports = {
8
    cloneObject,
9
};