Note: This feature is available in Web Workers.
The name read-only property of the TrustedTypePolicy interface returns the name of the policy.
A string containing the name of the policy.
In the below example a policy called myEscapePolicy is created using TrustedTypePolicyFactory.createPolicy() and is represented by the object escapeHTMLPolicy. Calling name on this object returns the string "myEscapePolicy".
const escapeHTMLPolicy = trustedTypes.createPolicy("myEscapePolicy", {
createHTML: (string) => string.replace(/</g, "&lt;"),
});
console.log(escapeHTMLPolicy.name); /* "myEscapePolicy" */