1.0.0:first commit

This commit is contained in:
2026-03-26 01:23:19 +08:00
commit f8d5b11567
23562 changed files with 2853775 additions and 0 deletions

26
server/node_modules/sql.js/documentation_index.md generated vendored Executable file
View File

@@ -0,0 +1,26 @@
# sql.js API documentation
## Introduction
If you need a quick intoduction with code samples that you can copy-and-paste,
head over to [sql.js.org](https://sql.js.org/)
## API
### The initSqlJs function
The root object in the API is the [`initSqlJs`](./global.html#initSqlJs) function,
that takes an [`SqlJsConfig`](./global.html#SqlJsConfig) parameter,
and returns an [SqlJs](./global.html#SqlJs) object
### The SqlJs object
`initSqlJs` returns the main sql.js object, the [**`SqlJs`**](./module-SqlJs.html) module, which contains :
#### Database
[**Database**](./Database.html) is the main class, that represents an SQLite database.
#### Statement
The [**Statement**](./Statement.html) class is used for prepared statements.