readme
This commit is contained in:
parent
fd83139ed5
commit
d8257c457b
|
@ -29,7 +29,7 @@ const res = await grip(
|
||||||
);
|
);
|
||||||
|
|
||||||
if (res.Fail()) {
|
if (res.Fail()) {
|
||||||
handleErrorProperly();
|
// handle error
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ const json = await grip(
|
||||||
);
|
);
|
||||||
|
|
||||||
if (json.Of(SyntaxError)) {
|
if (json.Of(SyntaxError)) {
|
||||||
handleJsonParseError();
|
// handle parse error
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@ const [res, fetchStatus] = await grip(
|
||||||
fetch('https://api.example.com')
|
fetch('https://api.example.com')
|
||||||
);
|
);
|
||||||
if (fetchStatus.Fail()) {
|
if (fetchStatus.Fail()) {
|
||||||
handleErrorProperly();
|
// handle error
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ const [json, parseStatus] = await grip(
|
||||||
res.json()
|
res.json()
|
||||||
);
|
);
|
||||||
if (parseStatus.Of(SyntaxError)) {
|
if (parseStatus.Of(SyntaxError)) {
|
||||||
handleJsonParseError();
|
// handle parse error
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue