This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Description
When attempting to import "myscript"; to use in a REST API the XMLHttpRequest instance in undefined.
Assumption was made:
// We are writing some browser module here so the no import found should be ignored
// eslint-disable-next-line no-undef
var request = new XMLHttpRequest();
In order to fix this the dependencies needs to be introduced.
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;