web3.js/lib/utils/browser-xhr.js

10 lines
219 B
JavaScript
Raw Normal View History

'use strict';
2015-03-23 17:56:57 +01:00
// go env doesn't have and need XMLHttpRequest
2015-03-23 18:10:07 +01:00
if (typeof XMLHttpRequest === 'undefined') {
2015-03-23 18:03:31 +01:00
exports.XMLHttpRequest = {};
} else {
exports.XMLHttpRequest = XMLHttpRequest; // jshint ignore:line
}
2015-03-23 17:56:57 +01:00