handleThenable<T> function

Future<T> handleThenable<T>(
  1. PromiseJsImpl<T> thenable
)

Handles the PromiseJsImpl object.

Implementation

Future<T> handleThenable<T>(PromiseJsImpl<T> thenable) async {
  return util.promiseToFuture(thenable);
}