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