web api instance property
TrustedTypePolicyFactory: defaultPolicy property
Available in workers
The defaultPolicy read-only property of the TrustedTypePolicyFactory interface returns the default TrustedTypePolicy or null if this is empty.
See The default policy for more details.
Value
A TrustedTypePolicy or null.
Examples
The first line below returns null as no default policy has been created. Once a default policy is created, calling defaultPolicy returns that policy object.
console.log(trustedTypes.defaultPolicy); // null
const dp = trustedTypes.createPolicy("default", {});
console.log(trustedTypes.defaultPolicy); // a TrustedTypePolicy object
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.