* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 483 | * @param h the hashkey (!truthy to delete the hashkey) |
| 484 | */ |
| 485 | function setHashKey(obj, h) { |
| 486 | if (h) { |
| 487 | obj.$$hashKey = h; |
| 488 | } else { |
| 489 | delete obj.$$hashKey; |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | |
| 494 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected