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.
37 lines
852 B
37 lines
852 B
3 years ago
|
/*
|
||
|
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 CreateScriptRuntimeModule extends HelperRuntimeModule {
|
||
|
constructor() {
|
||
|
super("trusted types script");
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @returns {string} runtime code
|
||
|
*/
|
||
|
generate() {
|
||
|
const { compilation } = this;
|
||
|
const { runtimeTemplate, outputOptions } = compilation;
|
||
|
const { trustedTypes } = outputOptions;
|
||
|
const fn = RuntimeGlobals.createScript;
|
||
|
|
||
|
return Template.asString(
|
||
|
`${fn} = ${runtimeTemplate.returningFunction(
|
||
|
trustedTypes
|
||
|
? `${RuntimeGlobals.getTrustedTypesPolicy}().createScript(script)`
|
||
|
: "script",
|
||
|
"script"
|
||
|
)};`
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = CreateScriptRuntimeModule;
|