* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 452 | * @param h the hashkey (!truthy to delete the hashkey) |
| 453 | */ |
| 454 | function setHashKey(obj, h) { |
| 455 | if (h) { |
| 456 | obj.$$hashKey = h; |
| 457 | } else { |
| 458 | delete obj.$$hashKey; |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | |
| 463 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected