* Set or clear the hashkey for an object. * @param obj object * @param h the hashkey (!truthy to delete the hashkey)
(obj, h)
| 406 | * @param h the hashkey (!truthy to delete the hashkey) |
| 407 | */ |
| 408 | function setHashKey(obj, h) { |
| 409 | if (h) { |
| 410 | obj.$$hashKey = h; |
| 411 | } else { |
| 412 | delete obj.$$hashKey; |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | |
| 417 | function baseExtend(dst, objs, deep) { |
no outgoing calls
no test coverage detected