6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
|
exports = function(val) {
|
||
|
return JSON.parse(JSON.stringify(val));
|
||
|
};
|
||
|
|
||
|
module.exports = exports;
|