## Input ```js var tag = `<hello</>`; JSXParser(tag); ``` ## Expected Expect the JSXParser to throw error. ## Actual A JSON object is returned. ```js { type:"hello<" props:Object children:Array[0] isVoidTag:true } ```