* Execute function asynchronously * @param fn * @param context
(fn, context)
| 1569 | * @param context |
| 1570 | */ |
| 1571 | function async(fn, context) { |
| 1572 | setTimeout(fn.bind(context), 0); |
| 1573 | } |
| 1574 | |
| 1575 | /** |
| 1576 | * Extends the destination object `dst` by copying all of the properties from |
no outgoing calls
no test coverage detected
searching dependent graphs…