From b05872af79213a66273bb5bb5a04da24cab896d2 Mon Sep 17 00:00:00 2001 From: vvvctr <1019862+vvvctr@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:18:55 +0200 Subject: [PATCH] Fix README.md code example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e98ee5e..a42cfa8c 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ If you need ```BigInt``` support, it is partially supported since most browsers while (stmt.step()) console.log(stmt.get(null, config)); /*OR*/ - const result = db.exec("SELECT * FROM test", config); + const results = db.exec("SELECT * FROM test", config); console.log(results[0].values) ```