i don't see why this should be added to kotlin sta...
# coroutines
v
i don't see why this should be added to kotlin standard library. javascript-like interfaces are easily converted to asynchronous ones. consider for example:
Copy code
fun delay(ms: Int): Promise<Unit> = Promise {resolve, _ ->
    window.setTimeout({resolve(Unit)}, ms)
}