File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,22 +57,22 @@ Import the JS file in your page:
5757``` html
5858<!DOCTYPE html>
5959<html lang =" en" >
60- <head >
61- <title >node-sql-parser</title >
62- <meta charset =" utf-8" />
63- </head >
64- <body >
65- <p ><em >Check console to see the output</em ></p >
66- <script src =" https://unpkg.com/node-sql-parser@latest/parser.min.js" ></script >
67- <script >
68- window .onload = function () {
69- // Example queries
70- const parser = new NodeSQLParser.Parser ()
71- const ast = parser .astify (" select id, name from students where age < 18" )
72- console .log (ast)
60+ <head >
61+ <title >node-sql-parser</title >
62+ <meta charset =" utf-8" />
63+ </head >
64+ <body >
65+ <p ><em >Check console to see the output</em ></p >
66+ <script src =" https://unpkg.com/node-sql-parser@latest/parser.min.js" ></script >
67+ <script >
68+ window .onload = function () {
69+ // Example queries
70+ const parser = new NodeSQLParser.Parser ()
71+ const ast = parser .astify (" select id, name from students where age < 18" )
72+ console .log (ast)
7373 }
74- </script >
75- </body >
74+ </script >
75+ </body >
7676</html >
7777```
7878
You can’t perform that action at this time.
0 commit comments