mirror of https://github.com/webpack/webpack.git
9 lines
188 B
JavaScript
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;
|