feat(async): added PromiseWrapper.wrap

This commit is contained in:
vsavkin
2015-06-26 15:58:52 -07:00
parent 71e0f89594
commit b688dee4c8
2 changed files with 14 additions and 0 deletions

View File

@ -19,6 +19,10 @@ class PromiseWrapper {
return promise.then(success, onError: onError);
}
static Future wrap(Function fn) {
return new Future(fn);
}
// Note: We can't rename this method to `catch`, as this is not a valid
// method name in Dart.
static Future catchError(Future promise, Function onError) {