From c2b1c1e87560ef8337f874621527a146a0d95a05 Mon Sep 17 00:00:00 2001 From: Edi Katsenelson <85438368+edik24@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:32:42 +0200 Subject: [PATCH] Update memos-dao.js --- app/data/memos-dao.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/memos-dao.js b/app/data/memos-dao.js index 434c935c..347e8701 100644 --- a/app/data/memos-dao.js +++ b/app/data/memos-dao.js @@ -3,7 +3,7 @@ function MemosDAO(db) { "use strict"; - /* If this constructor is called without the "new" operator, "this" points + /* If this constructor is called without the "new" operator, "this" points TTTTTT * to the global object. Log a warning and call it correctly. */ if (false === (this instanceof MemosDAO)) { console.log("Warning: MemosDAO constructor called without 'new' operator");