DeepClone.js 482 B

123456789101112131415
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2014
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['underscore'], function (_) {
  8. _.deepClone = function (obj) {
  9. // This is the fastest way to clone an object in javascript.
  10. return JSON.parse(JSON.stringify(obj));
  11. };
  12. });
  13. //# sourceMappingURL=DeepClone.js.map