webpack/test/helpers/CurrentScript.js

12 lines
230 B
JavaScript

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