UNPKG

release-it

Version:

Generic CLI tool to automate versioning and package publishing-related tasks.

12 lines (8 loc) 249 B
import { MockServer, FetchMocker } from 'mentoss'; export const mockFetch = baseUrls => { const servers = [baseUrls].flat().map(url => new MockServer(url)); const mocker = new FetchMocker({ servers }); return [mocker, ...servers]; };