(doc?: Document)
| 18 | }; |
| 19 | |
| 20 | function getWebpackNonce(doc?: Document): string | undefined { |
| 21 | let ownerWindow = doc?.defaultView as NonceWindow | null | undefined; |
| 22 | return ownerWindow?.__webpack_nonce__ || globalThis['__webpack_nonce__'] || undefined; |
| 23 | } |
| 24 | |
| 25 | let nonceCache = new WeakMap<Document, string>(); |
| 26 |