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 750B

1234567891011121314151617181920212223242526272829303132333435363738
  1. function jclone(obj){
  2. // clog("JC")
  3. return Array.isArray(obj) ? $.extend(true,[],obj) : $.extend(true,{},obj)
  4. console.trace("JC")
  5. return JSON.parse(JSON.stringify(obj))
  6. return Array.isArray(obj) ? $.extend(true,[],obj) : $.extend(true,{},obj)
  7. }
  8. function jx(obj){
  9. // clog("JC")
  10. // console.trace("JC")
  11. return JSON.parse(JSON.stringify(obj))
  12. // return Array.isArray(obj) ? $.extend(true,[],obj) : $.extend(true,{},obj)
  13. // return Array.isArray(obj) ? $.extend(true,[],obj) : $.extend(true,{},obj)
  14. }
  15. jc = jclone
  16. // gcx = jx(glob_corner)
  17. // gcc = jc(glob_corner)
  18. function q_walker_h(o,m,max_depth) {
  19. // body...
  20. }
  21. function q_walker(o,m,depth,max_depth) {
  22. if (depth > max_depth){
  23. return
  24. }
  25. // body...
  26. }
  27. // console.log("IU")