2015-11-23 10:18:04 -08:00
|
|
|
import {Injectable} from 'angular2/core';
|
2015-04-28 23:07:55 -07:00
|
|
|
|
|
|
|
// Make sure not to evaluate this in a non-browser environment!
|
|
|
|
@Injectable()
|
2015-06-24 00:27:07 -07:00
|
|
|
export class BrowserXhr {
|
2015-06-19 12:14:12 -07:00
|
|
|
constructor() {}
|
2015-06-24 00:27:07 -07:00
|
|
|
build(): any { return <any>(new XMLHttpRequest()); }
|
2015-04-28 23:07:55 -07:00
|
|
|
}
|