JSON matches a complete JSON value.
()
| 144 | |
| 145 | // JSON matches a complete JSON value. |
| 146 | func (b *Builder) JSON() ParserID { |
| 147 | return b.add(&JSONParser{}) |
| 148 | } |
| 149 | |
| 150 | // JSONNumber matches a JSON number. |
| 151 | func (b *Builder) JSONNumber() ParserID { |