* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 473 | * @param h the hashkey (!truthy to delete the hashkey) |
| 474 | */ |
| 475 | function setHashKey(obj, h) { |
| 476 | if (h) { |
| 477 | obj.$$hashKey = h; |
| 478 | } else { |
| 479 | delete obj.$$hashKey; |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | |
| 484 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected