We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7e751e + 1f477a0 commit c912c6bCopy full SHA for c912c6b
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 == "" {
6
+ return 0
7
+ }
8
+ return 1
9
+}
0 commit comments