Skip to content

Commit c5a0411

Browse files
file comments updated.
1 parent d3fac88 commit c5a0411

File tree

7 files changed

+8
-52
lines changed

7 files changed

+8
-52
lines changed

src/TinySQL.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,6 @@ import TinySqlQuery from './TinySqlQuery';
99
/**
1010
* TinySQL is a wrapper for basic SQL operations on a local storage abstraction.
1111
* It supports inserting, updating, deleting, querying and joining JSON-based structured data.
12-
*
13-
* @author JasminDreasond
14-
* @version 1.0
15-
* @date 2025-03-24
16-
*
17-
* Documentation written with the assistance of OpenAI's ChatGPT.
18-
*
19-
* License: AGPL-3.0
20-
* ----------
21-
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
22-
*
23-
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
24-
*
25-
* You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
2612
*/
2713
class TinySQL {
2814
#sqlEngine;

src/TinySqlQuery.js

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,7 @@ import TinySqlTags from './TinySqlTags';
55
const clientBase = new Client();
66

77
/**
8-
* @author JasminDreasond
9-
* @version 1.0
10-
* @date 2025-03-24
11-
*
12-
* Documentation written with the assistance of OpenAI's ChatGPT.
13-
*
14-
* License: AGPL-3.0
15-
* ----------
16-
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
17-
*
18-
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
19-
*
20-
* You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
8+
* TinySQLQuery is a queries operating system developed to operate in a specific table.
219
*/
2210
class TinySqlQuery {
2311
#conditions = {};

src/TinySqlTags.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,6 @@ import { objType } from 'tiny-essentials';
1717
* - An internal engine to dynamically build `EXISTS`-based SQL conditions compatible with JSON arrays
1818
* - Integration-ready output for SQLite3, Postgre or similar relational databases
1919
*
20-
* @author JasminDreasond
21-
* @version 1.0
22-
* @date 2025-03-24
23-
*
24-
* Documentation written with the assistance of OpenAI's ChatGPT.
25-
*
26-
* License: AGPL-3.0
27-
* ----------
28-
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License
29-
* as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
30-
*
31-
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
32-
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
33-
*
34-
* You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
35-
*
3620
* ----------
3721
* 💖 Special Thanks 💖
3822
* Deep gratitude to the Derpibooru project for the inspiration, structure, and creativity

src/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@ import TinySQL from './TinySQL';
22
import TinySqlQuery from './TinySqlQuery';
33
import TinySqlTags from './TinySqlTags';
44

5-
export { TinySqlQuery, TinySqlTags };
6-
7-
export default TinySQL;
5+
export { TinySqlQuery, TinySqlTags, TinySQL };

test/index.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const { } = require('../dist/index.cjs');
1+
const { TinySqlQuery, TinySqlTags, TinySQL } = require('../dist/index.cjs');
22

3-
console.log();
3+
console.log(TinySqlQuery, TinySqlTags, TinySQL);

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { } from '../dist';
1+
import { TinySqlQuery, TinySqlTags, TinySQL } from '../dist';
22

3-
console.log();
3+
console.log(TinySqlQuery, TinySqlTags, TinySQL);

test/index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { } from '../dist/index.mjs';
1+
import { TinySqlQuery, TinySqlTags, TinySQL } from '../dist/index.mjs';
22

3-
console.log();
3+
console.log(TinySqlQuery, TinySqlTags, TinySQL);

0 commit comments

Comments
 (0)