mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 11:38:12 +00:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
'use strict';
|
|
|
|
// go env doesn't have and need XMLHttpRequest
|
|
if (typeof XMLHttpRequest === 'undefined') {
|
|
exports.XMLHttpRequest = {};
|
|
} else {
|
|
exports.XMLHttpRequest = XMLHttpRequest; // jshint ignore:line
|
|
}
|
|
|