1
2
3
4
5
6
7
8
9
10
11
12
13
| import { __awaiter, __generator } from "tslib";
| import { fetchOrThrow } from './fetchOrThrow';
| export function fetchJson(uri) {
| return __awaiter(this, void 0, void 0, function () {
| return __generator(this, function (_a) {
| switch (_a.label) {
| case 0: return [4 /*yield*/, fetchOrThrow(uri)];
| case 1: return [2 /*return*/, (_a.sent()).json()];
| }
| });
| });
| }
| //# sourceMappingURL=fetchJson.js.map
|
|