The createScript()
method of the TrustedTypePolicy
interface creates a TrustedScript
object using a policy created by TrustedTypePolicyFactory.createPolicy()
.
The createScript()
method of the TrustedTypePolicy
interface creates a TrustedScript
object using a policy created by TrustedTypePolicyFactory.createPolicy()
.
js
createScript(input) createScript(input, args)
input
A string containing the string to be sanitized by the policy.
args
Optional
Additional arguments to be passed to the function represented by TrustedTypePolicy
.
A TrustedScript
object.
TypeError
Thrown if TrustedTypePolicy
does not contain a function to run on the input.
In the below example a string containing a potentially risky script is used as the input for createScript()
. The policy can sanitize this script before inserting it into an injection sink that could cause it to be executed.
js
const sanitized = scriptPolicy.createScript("eval('2 + 2')");
Specification |
---|
Trusted Types # dom-trustedtypepolicy-createscript |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
createScript |
83 | 83 | No | No | 69 | No | 83 | 83 | No | 59 | No | 13.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/TrustedTypePolicy/createScript