UNPKG
@material-git/all
Version:
latest (2.0.0-dev.20160926)
2.0.0-git.20160919
2.0.0-git.20160912
2.0.0-dev.20160926
Angular 2 Material
github.com/angular/material2
angular/material2
@material-git/all
/
core
/
async
/
promise-completer.js
13 lines
(11 loc)
•
327 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
var
PromiseCompleter
= (
function
(
) {
function
PromiseCompleter
(
) {
var
_this =
this
;
this
.
promise
=
new
Promise
(
function
(
res, rej
) { _this.
resolve
= res; _this.
reject
= rej; }); }
return
PromiseCompleter
; }());
//# sourceMappingURL=promise-completer.js.map