2017-01-26 14:16:51 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2017-02-22 18:14:49 -05:00
|
|
|
export function scheduleMicroTask(cb: () => any) {
|
2017-02-24 00:23:57 -05:00
|
|
|
Promise.resolve(null).then(cb);
|
2017-02-22 18:14:49 -05:00
|
|
|
}
|