Skip to content

v3.0.0-beta.10

Pre-release
Pre-release
Compare
Choose a tag to compare
@jimmywarting jimmywarting released this 19 Jul 08:36
b50fbc1

This package is now a ESM only package. To import fetch you either have to use

import fetch from 'node-fetch';

// Or if you are still using commonjs or want to lazy
// import fetch then the async import works fine
import('node-fetch') 

See CHANGELOG for details.