import fetch from 'cross-fetch'; // const API_ROOT = "https://fediverse.space/api/v1/" const API_ROOT = "http://localhost:8000/api/v1/" export const getFromApi = (path: string): Promise => { const domain = API_ROOT.endsWith("/") ? API_ROOT : API_ROOT + "/"; path = path.endsWith("/") ? path : path + "/"; path += "?format=json" return fetch(domain + path).then(response => response.json()); }