UNPKG

fetchbee

Version:

A lightweight JS library to simplify all kinds of API calls.

6 lines (4 loc) 152 B
import { getFetch } from "./getFetch.js"; export async function getById(baseUrl, id, options = {}) { return getFetch(`${baseUrl}/${id}`, options); }