()
| 24 | } |
| 25 | |
| 26 | function buildURL() { |
| 27 | const p = new LLParse(); |
| 28 | const instance = new llhttp.URL(p, true); |
| 29 | |
| 30 | const node = instance.build(); |
| 31 | |
| 32 | // Loop |
| 33 | node.exit.toHTTP.otherwise(node.entry.normal); |
| 34 | node.exit.toHTTP09.otherwise(node.entry.normal); |
| 35 | |
| 36 | return { llparse: p, entry: node.entry.normal }; |
| 37 | } |
| 38 | |
| 39 | // |
| 40 | // Build binaries using cached nodes/llparse |