UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

13 lines (11 loc) 295 B
import {Injectable} from 'angular2/core'; /** * A backend for http that uses the `XMLHttpRequest` browser API. * * Take care not to evaluate this in non-browser contexts. */ @Injectable() export class BrowserXhr { constructor() {} build(): any { return <any>(new XMLHttpRequest()); } }