webpack/test/helpers/CurrentScript.js

9 lines
188 B
JavaScript
Raw Normal View History

2020-09-17 04:07:06 +08:00
class CurrentScript {
constructor(path = "", type = "text/javascript") {
this.src = `https://test.cases/path/${path}index.js`;
this.type = type;
}
}
module.exports = CurrentScript;