4 lines
65 B
JavaScript
4 lines
65 B
JavaScript
|
exports.copyObject = (obj) => {
|
||
|
return Object.assign({},obj)
|
||
|
}
|