jsonClone.js 100 B

12345
  1. exports = function(val) {
  2. return JSON.parse(JSON.stringify(val));
  3. };
  4. module.exports = exports;