UNPKG
jsonrepair
Version:
latest (3.13.1)
3.13.1
3.13.0
3.12.0
3.11.2
3.11.1
3.11.0
3.10.0
3.9.0
3.8.1
3.8.0
3.7.1
3.7.0
3.6.1
3.6.0
3.5.1
3.5.0
3.4.1
3.4.0
3.3.0
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.2.1
2.2.0
2.1.0
2.0.1
2.0.0
1.1.0
0.1.0
Repair broken JSON documents
github.com/josdejong/jsonrepair
josdejong/jsonrepair
jsonrepair
/
lib
/
esm
/
utils
/
JSONRepairError.js
7 lines
•
208 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
class
JSONRepairError
extends
Error
{
constructor
(
message, position
) {
super
(
`
${message}
at position
${position}
`
);
this
.
position
= position; } }
//# sourceMappingURL=JSONRepairError.js.map