├── .github └── workflows │ ├── format.yml │ ├── lint.yml │ ├── release.yml │ ├── test-bun.yml │ └── test-node.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── bun.lockb ├── package.json ├── release.config.cjs ├── src ├── base.ts ├── bun.ts ├── encoding.ts ├── index.ts ├── statements.ts ├── types.ts └── utils.ts ├── tests ├── bun.test.ts └── node.test.ts ├── tsconfig.json └── tsup.config.ts /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-bun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.github/workflows/test-bun.yml -------------------------------------------------------------------------------- /.github/workflows/test-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.github/workflows/test-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/bun.lockb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/package.json -------------------------------------------------------------------------------- /release.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/release.config.cjs -------------------------------------------------------------------------------- /src/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/base.ts -------------------------------------------------------------------------------- /src/bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/bun.ts -------------------------------------------------------------------------------- /src/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/encoding.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/statements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/statements.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/bun.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/tests/bun.test.ts -------------------------------------------------------------------------------- /tests/node.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/tests/node.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miftahDB/miftahdb/HEAD/tsup.config.ts --------------------------------------------------------------------------------