7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* For browser compatibility, we can just use the existing `XMLHttpRequest`.
|
|
*/
|
|
module.exports = window.XMLHttpRequest;
|
|
|