style(lint): re-format modules/@angular
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import {BaseException} from '@angular/core';
|
||||
|
||||
import {XHR} from '../index';
|
||||
import {PromiseCompleter, PromiseWrapper} from '../src/facade/async';
|
||||
import {ListWrapper, Map} from '../src/facade/collection';
|
||||
import {isBlank, normalizeBlank} from '../src/facade/lang';
|
||||
import {BaseException} from '@angular/core';
|
||||
import {PromiseCompleter, PromiseWrapper} from '../src/facade/async';
|
||||
|
||||
|
||||
/**
|
||||
* A mock implementation of {@link XHR} that allows outgoing requests to be mocked
|
||||
@ -95,9 +97,7 @@ export class MockXHR extends XHR {
|
||||
class _PendingRequest {
|
||||
completer: PromiseCompleter<string>;
|
||||
|
||||
constructor(public url: string) {
|
||||
this.completer = PromiseWrapper.completer();
|
||||
}
|
||||
constructor(public url: string) { this.completer = PromiseWrapper.completer(); }
|
||||
|
||||
complete(response: string) {
|
||||
if (isBlank(response)) {
|
||||
|
Reference in New Issue
Block a user