UNPKG

@scayle/storefront-core

Version:

Collection of essential utilities to work with the Storefront API

8 lines (7 loc) 163 B
export async function unwrap(res) { const response = await res; if (response instanceof Response) { return await response.json(); } return response; }