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