You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
859 B
36 lines
859 B
/* |
|
MIT License http://www.opensource.org/licenses/mit-license.php |
|
*/ |
|
|
|
"use strict"; |
|
|
|
const RuntimeGlobals = require("../RuntimeGlobals"); |
|
const Template = require("../Template"); |
|
const HelperRuntimeModule = require("./HelperRuntimeModule"); |
|
|
|
class CreateScriptUrlRuntimeModule extends HelperRuntimeModule { |
|
constructor() { |
|
super("trusted types script url"); |
|
} |
|
|
|
/** |
|
* @returns {string} runtime code |
|
*/ |
|
generate() { |
|
const { compilation } = this; |
|
const { runtimeTemplate, outputOptions } = compilation; |
|
const { trustedTypes } = outputOptions; |
|
const fn = RuntimeGlobals.createScriptUrl; |
|
|
|
return Template.asString( |
|
`${fn} = ${runtimeTemplate.returningFunction( |
|
trustedTypes |
|
? `${RuntimeGlobals.getTrustedTypesPolicy}().createScriptURL(url)` |
|
: "url", |
|
"url" |
|
)};` |
|
); |
|
} |
|
} |
|
|
|
module.exports = CreateScriptUrlRuntimeModule;
|
|
|