Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 9 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | const fastClone = require('fast-clone'); |
||
2 | |||
3 | const cloneObject = (obj) => { |
||
4 | return fastClone(obj); |
||
5 | }; |
||
6 | |||
7 | module.exports = { |
||
8 | cloneObject, |
||
9 | }; |