UNPKG

file-fetch

Version:

fetch for read and write access to the local file system

10 lines (7 loc) 202 B
import fetch from './fetch.js' function factory ({ baseURL, contentType } = {}) { return (uri, options) => { return fetch(uri, { baseURL, contentType, ...options }) } } export default factory