Skip to content

Commit

Permalink
chore: fixed README's Table of Content
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Jul 3, 2023
1 parent 30581ca commit b6c073a
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions README.md
Expand Up @@ -20,19 +20,18 @@ Universal WHATWG Fetch API for Node, Browsers, Workers and React Native. The sce

## Table of Contents

- [](#)
- [Table of Contents](#table-of-contents)
- [Install](#install)
- [Usage](#usage)
- [Demo \& API](#demo--api)
- [FAQ](#faq)
- [Yet another fetch library?](#yet-another-fetch-library)
- [Why polyfill might not be a good idea?](#why-polyfill-might-not-be-a-good-idea)
- [How does cross-fetch work?](#how-does-cross-fetch-work)
- [Who's Using It?](#whos-using-it)
- [Thanks](#thanks)
- [License](#license)
- [Author](#author)
- [Table of Contents](#table-of-contents)
- [Install](#install)
- [Usage](#usage)
- [Demo \& API](#demo--api)
- [FAQ](#faq)
- [Yet another fetch library?](#yet-another-fetch-library)
- [Why polyfill might not be a good idea?](#why-polyfill-might-not-be-a-good-idea)
- [How does cross-fetch work?](#how-does-cross-fetch-work)
- [Who's Using It?](#whos-using-it)
- [Thanks](#thanks)
- [License](#license)
- [Author](#author)

* * *

Expand All @@ -42,7 +41,7 @@ Universal WHATWG Fetch API for Node, Browsers, Workers and React Native. The sce
npm install --save cross-fetch
```

As a [ponyfill](https://github.com/sindresorhus/ponyfill):
As a [ponyfill](https://github.com/sindresorhus/ponyfill) (imports locally):

```javascript
// Using ES6 modules with Babel or TypeScript
Expand All @@ -52,7 +51,7 @@ import fetch from 'cross-fetch';
const fetch = require('cross-fetch');
```

As a polyfill:
As a polyfill (installs globally):

```javascript
// Using ES6 modules
Expand Down

0 comments on commit b6c073a

Please sign in to comment.