Skip to content

Instantly share code, notes, and snippets.

View sholladay's full-sized avatar

Seth Holladay sholladay

View GitHub Profile
@sholladay
sholladay / api.js
Last active October 1, 2019 11:16 — forked from popuguytheparrot/api.js
ky with proxy
import { ky } from './ky.config';
const employeesUrl = 'employees';
export async function fetchEmployees() {
return ky.get(employeesUrl).json();
}