UNPKG
@juici/math
Version:
latest (0.1.0)
0.1.0
A mathematics utility library
Juici/math.js
@juici/math
/
src
/
errors
/
ParseDecimalError.ts
10 lines
(7 loc)
•
236 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import { setHasInstance } from
"../util"
;
/** * An error parsing a decimal from a string. */
export
class
ParseDecimalError
extends
Error
{} ParseDecimalError.prototype.name =
"ParseDecimalError"
; setHasInstance(ParseDecimalError);