You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

inspect_utils.js 183B

12345678910
  1. function jclone(obj){
  2. return Array.isArray(obj) ? $.extend(true,[],obj) : $.extend(true,{},obj)
  3. }
  4. function jx(obj){
  5. return JSON.parse(JSON.stringify(obj))
  6. }
  7. window.jc = jclone