* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 386 | * @param h the hashkey (!truthy to delete the hashkey) |
| 387 | */ |
| 388 | function setHashKey(obj, h) { |
| 389 | if (h) { |
| 390 | obj.$$hashKey = h; |
| 391 | } else { |
| 392 | delete obj.$$hashKey; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | |
| 397 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected