* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 439 | * @param h the hashkey (!truthy to delete the hashkey) |
| 440 | */ |
| 441 | function setHashKey(obj, h) { |
| 442 | if (h) { |
| 443 | obj.$$hashKey = h; |
| 444 | } else { |
| 445 | delete obj.$$hashKey; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | |
| 450 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected