polkadot-js/common

View on GitHub
packages/x-fetch/README.md

Summary

Maintainability
Test Coverage
# @polkadot/x-fetch

A cross-environment fetch.

Install it via `yarn add @polkadot/x-fetch`

```js
import { fetch } from '@polkadot/x-fetch';

...
const response = await fetch('https://example.com/something.json');
const json = await response.json();
```