0.2.1 • Published 1 year ago
@khulnasoft/httpql v0.2.1
HTTPQL
This is the JS parser for the HTTPQL language.
import { deserialize, serialize } from "@khulnasoft/httpql";
const parsed = deserialize('req.ext.cont:"HELLO"');
console.log(parsed);
const result = serialize(parsed);
console.log(result);