UNPKG
idsaepe
Version:
latest (1.5.0)
1.5.0
1.4.1
1.4.0
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
github.com/WymanMills/idsaepe
WymanMills/idsaepe
idsaepe
/
lib
/
esm
/
retry
/
tooManyTries.js
10 lines
(9 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
TooManyTries
extends
Error
{
constructor
(
) {
super
(
"function did not complete within allowed number of attempts"
);
this
.
tooManyTries
=
true
; } }
export
function
isTooManyTries
(
error
) {
return
error.
tooManyTries
===
true
; }