UNPKG

@datev-research/mandat-shared-utils

Version:

Shared Utilities for the MANDAT B2B Showcase

8 lines (7 loc) 301 B
import { getResource, parseToN3 } from "@datev-research/mandat-shared-solid-requests"; export async function fetchStoreOf(uri, session) { return getResource(uri, session) .then((resp) => resp.data) .then((txt) => parseToN3(txt, uri)) .then((parsedN3) => parsedN3.store); }