From 631660a213570390163bbcd41828a472dbf95841 Mon Sep 17 00:00:00 2001 From: Nikiroy78 <35032449+Nikiroy78@users.noreply.github.com> Date: Sun, 26 Jun 2022 14:00:23 +0300 Subject: [PATCH] fix --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 0f6b620..a1135f4 100644 --- a/index.js +++ b/index.js @@ -53,7 +53,7 @@ function get_from_key (db_data, conditions) { class database { constructor(path, warning=true){ - if (warning) echo("You use LEGACY version of SQLEasy library (v. 0.9.1). In new version structure was been edited. Show more in: https://www.npmjs.com/package/sql-easy-lib"); + if (warning) console.log("You use LEGACY version of SQLEasy library (v. 0.9.1). In new version structure was been edited. Show more in: https://www.npmjs.com/package/sql-easy-lib"); this.PATH = path; // this.db = new sqlite3.Database(this.PATH); // async - heresy! this.db = new sqlite3(this.PATH);