webpack/test/helpers/CurrentScript.js

9 lines
188 B
JavaScript

class CurrentScript {
constructor(path = "", type = "text/javascript") {
this.src = `https://test.cases/path/${path}index.js`;
this.type = type;
}
}
module.exports = CurrentScript;