mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-13 11:05:52 -04:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
const createFetchRetry = require('@zeit/fetch-retry')
|
|
const nodeFetch = require('node-fetch-unix')
|
|
|
|
export default createFetchRetry(nodeFetch)
|
|
|
|
export const FetchError = nodeFetch.FetchError
|
|
export const Headers = nodeFetch.Headers
|
|
export const Request = nodeFetch.Request
|
|
export const Response = nodeFetch.Response
|