* Lift all the functions/methods on src * @param {object|function} src source whose functions will be lifted * @param {function?} combine optional function for customizing the lifting * process. It is passed dst, the lifted function, and the property name of * the original function on src.
(src, combine, dst)
| 167 | * properties. If dst not provided, returns a new object with lifted functions. |
| 168 | */ |
| 169 | function liftAll(src, combine, dst) { |
| 170 | return _liftAll(lift, combine, dst, src); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Takes an object that responds to the resolver interface, and returns |
no outgoing calls
no test coverage detected
searching dependent graphs…