We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e751e commit 8efa2faCopy full SHA for 8efa2fa
fuzz.go
@@ -0,0 +1,9 @@
1
+package jsonparser
2
+
3
+func FuzzParseString(data []byte) int {
4
+ r, err := ParseString(data)
5
+ if err != nil || r == nil {
6
+ return 0
7
+ }
8
+ return 1
9
+}
0 commit comments