Fetches a JSON resource and parses it
(resource)
| 5031 | |
| 5032 | /** Fetches a JSON resource and parses it */ |
| 5033 | async function fetch_json(resource) { |
| 5034 | const response = await fetch(resource); |
| 5035 | return await response.json(); |
| 5036 | } |
| 5037 | if (!global_scope.GLOBAL || !global_scope.GLOBAL.isShadowRealm()) { |
| 5038 | expose(fetch_json, 'fetch_json'); |
| 5039 | } |