1.1.1 • Published 2 years ago

fetch-shim v1.1.1

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Fetch Shim

An isomoprhic Fetch function, it just gives you the native one if available, or the one from undici.

Install

npm install --save fetch-shim

Usage

import fetch from 'fetch-shim';

const response = await fetch ( 'https://jsonplaceholder.typicode.com/todos/1' );
const json = await response.json ();

console.log ( json ); // => { userId: 1, id: 1, title: 'delectus aut autem', completed: false }

License

MIT © Fabio Spampinato

1.1.1

2 years ago

1.1.0

3 years ago

1.0.0

3 years ago