From 0757d18dd3c008057b6a5ff747633da4b59f6295 Mon Sep 17 00:00:00 2001 From: Justin Wolcott Date: Tue, 23 Aug 2022 12:45:11 -0500 Subject: [PATCH] clean up - you dummy --- index.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/index.js b/index.js index 00b438c..310c88a 100644 --- a/index.js +++ b/index.js @@ -294,17 +294,6 @@ class EZindexDB{ // DEMO: ///////////////////////////////// - let ez = new EZindexDB(); - await ez.start("company","people",["name"]); - - await ez.creates("people",{"id": "1", "salary": 12, "name": "STEVE"}); - await ez.creates("people",{"id": "2", "salary": 12, "name": "EDDY"}); - await ez.creates("people",{"id": "3", "salary": 12, "name": "JOE"}); - await ez.creates("people",{"id": "4", "salary": 13, "name": "JOE"}); - - let data = await ez.searches("people","name", "JOE"); - - /* // Instantiate the DB let ez = new EZindexDB();