@@ -581,14 +581,14 @@ const resAsync = parseUserInput(userInput)
581
581
.asyncAndThen (insertUser )
582
582
583
583
// Note no LogError shows up in the Result type
584
- resAsync .then ((res : Result <void , ParseError | InsertError >) => {e
584
+ resAsync .then ((res : Result <void , ParseError | InsertError >) => {
585
585
if (res .isErr ()){
586
586
console .log (" Oops, at least one step failed" , res .error )
587
587
}
588
588
else {
589
589
console .log (" User input has been parsed and inserted successfully." )
590
590
}
591
- }))
591
+ })
592
592
```
593
593
594
594
[ ⬆️ Back to top] ( #toc )
@@ -628,14 +628,14 @@ const resAsync = parseUserInput(userInput)
628
628
.asyncAndThen (insertUser )
629
629
630
630
// Note no LogError shows up in the Result type
631
- resAsync .then ((res : Result <void , ParseError | InsertError >) => {e
631
+ resAsync .then ((res : Result <void , ParseError | InsertError >) => {
632
632
if (res .isErr ()){
633
633
console .log (" Oops, at least one step failed" , res .error )
634
634
}
635
635
else {
636
636
console .log (" User input has been parsed and inserted successfully." )
637
637
}
638
- }))
638
+ })
639
639
```
640
640
641
641
[ ⬆️ Back to top] ( #toc )
@@ -675,14 +675,14 @@ const resAsync = parseUserInput(userInput)
675
675
.andThrough (validateUser )
676
676
.asyncAndThen (insertUser )
677
677
678
- resAsync .then ((res : Result <void , ParseErro | ValidateError | InsertError >) => {e
678
+ resAsync .then ((res : Result <void , ParseErro | ValidateError | InsertError >) => {
679
679
if (res .isErr ()){
680
680
console .log (" Oops, at least one step failed" , res .error )
681
681
}
682
682
else {
683
683
console .log (" User input has been parsed, validated, inserted successfully." )
684
684
}
685
- }))
685
+ })
686
686
```
687
687
688
688
[ ⬆️ Back to top] ( #toc )
@@ -712,14 +712,14 @@ const resAsync = parseUserInput(userInput)
712
712
.asyncAndThrough (insertUser )
713
713
.andThen (sendNotification )
714
714
715
- resAsync .then ((res : Result <void , ParseError | InsertError | NotificationError >) => {e
715
+ resAsync .then ((res : Result <void , ParseError | InsertError | NotificationError >) => {
716
716
if (res .isErr ()){
717
717
console .log (" Oops, at least one step failed" , res .error )
718
718
}
719
719
else {
720
720
console .log (" User has been parsed, inserted and notified successfully." )
721
721
}
722
- }))
722
+ })
723
723
```
724
724
725
725
[ ⬆️ Back to top] ( #toc )
@@ -1314,14 +1314,14 @@ const resAsync = insertUser(user)
1314
1314
.andThen (sendNotification )
1315
1315
1316
1316
// Note there is no LogError in the types below
1317
- resAsync .then ((res : Result <void , InsertError | NotificationError >) => {e
1317
+ resAsync .then ((res : Result <void , InsertError | NotificationError >) => {
1318
1318
if (res .isErr ()){
1319
1319
console .log (" Oops, at least one step failed" , res .error )
1320
1320
}
1321
1321
else {
1322
1322
console .log (" User has been inserted and notified successfully." )
1323
1323
}
1324
- }))
1324
+ })
1325
1325
```
1326
1326
1327
1327
[ ⬆️ Back to top] ( #toc )
@@ -1361,14 +1361,14 @@ const resAsync = insertUser(user)
1361
1361
.andThen (sendNotification )
1362
1362
1363
1363
// Note there is no LogError in the types below
1364
- resAsync .then ((res : Result <void , InsertError | NotificationError >) => {e
1364
+ resAsync .then ((res : Result <void , InsertError | NotificationError >) => {
1365
1365
if (res .isErr ()){
1366
1366
console .log (" Oops, at least one step failed" , res .error )
1367
1367
}
1368
1368
else {
1369
1369
console .log (" User has been inserted and notified successfully." )
1370
1370
}
1371
- }))
1371
+ })
1372
1372
```
1373
1373
1374
1374
[ ⬆️ Back to top] ( #toc )
@@ -1409,14 +1409,14 @@ const resAsync = buildUser(userRaw)
1409
1409
.andThrough (insertUser )
1410
1410
.andThen (sendNotification )
1411
1411
1412
- resAsync .then ((res : Result <void , BuildError | InsertError | NotificationError >) => {e
1412
+ resAsync .then ((res : Result <void , BuildError | InsertError | NotificationError >) => {
1413
1413
if (res .isErr ()){
1414
1414
console .log (" Oops, at least one step failed" , res .error )
1415
1415
}
1416
1416
else {
1417
1417
console .log (" User data has been built, inserted and notified successfully." )
1418
1418
}
1419
- }))
1419
+ })
1420
1420
```
1421
1421
1422
1422
[ ⬆️ Back to top] ( #toc )
0 commit comments