chore: remove short imports (#7847)

This commit is contained in:
Alexander Vakrilov
2019-10-02 18:08:13 +03:00
committed by Manol Donev
parent ca7c46da3c
commit beffc5736a
5 changed files with 6 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
exports.FormData = global.FormData;
if (!exports.XMLHttpRequest) {
var xhr = require("xhr");
var xhr = require("../xhr");
exports.XMLHttpRequest = xhr.XMLHttpRequest;
exports.FormData = xhr.FormData;
}