/
opt
/
canhelp
/
node_modules
/
drizzle-orm
/
sqlite-core
/
columns
/
/opt/canhelp/node_modules/drizzle-orm/sqlite-core/columns
mkdir
upload
Name
Size
Mode
Actions
all.cjs
1615
0644
edit
dl
rm
all.cjs.map
795
0644
edit
dl
rm
all.d.cts
527
0644
edit
dl
rm
all.d.ts
521
0644
edit
dl
rm
all.js
419
0644
edit
dl
rm
all.js.map
772
0644
edit
dl
rm
blob.cjs
4164
0644
edit
dl
rm
blob.cjs.map
8632
0644
edit
dl
rm
blob.d.cts
3700
0644
edit
dl
rm
blob.d.ts
3695
0644
edit
dl
rm
blob.js
2728
0644
edit
dl
rm
blob.js.map
8571
0644
edit
dl
rm
common.cjs
2900
0644
edit
dl
rm
common.cjs.map
5522
0644
edit
dl
rm
common.d.cts
2534
0644
edit
dl
rm
common.d.ts
2525
0644
edit
dl
rm
common.js
1688
0644
edit
dl
rm
common.js.map
5491
0644
edit
dl
rm
custom.cjs
2734
0644
edit
dl
rm
custom.cjs.map
8517
0644
edit
dl
rm
custom.d.cts
5789
0644
edit
dl
rm
custom.d.ts
5782
0644
edit
dl
rm
custom.js
1564
0644
edit
dl
rm
custom.js.map
8482
0644
edit
dl
rm
index.cjs
1707
0644
edit
dl
rm
index.cjs.map
466
0644
edit
dl
rm
index.d.cts
206
0644
edit
dl
rm
index.d.ts
199
0644
edit
dl
rm
index.js
232
0644
edit
dl
rm
index.js.map
392
0644
edit
dl
rm
integer.cjs
4987
0644
edit
dl
rm
integer.cjs.map
10210
0644
edit
dl
rm
integer.d.cts
5382
0644
edit
dl
rm
integer.d.ts
5375
0644
edit
dl
rm
integer.js
3426
0644
edit
dl
rm
integer.js.map
10137
0644
edit
dl
rm
numeric.cjs
3764
0644
edit
dl
rm
numeric.cjs.map
6962
0644
edit
dl
rm
numeric.d.cts
3278
0644
edit
dl
rm
numeric.d.ts
3273
0644
edit
dl
rm
numeric.js
2277
0644
edit
dl
rm
numeric.js.map
6901
0644
edit
dl
rm
real.cjs
1752
0644
edit
dl
rm
real.cjs.map
2135
0644
edit
dl
rm
real.d.cts
1019
0644
edit
dl
rm
real.d.ts
1015
0644
edit
dl
rm
real.js
640
0644
edit
dl
rm
real.js.map
2094
0644
edit
dl
rm
text.cjs
2992
0644
edit
dl
rm
text.cjs.map
6562
0644
edit
dl
rm
text.d.cts
3539
0644
edit
dl
rm
text.d.ts
3533
0644
edit
dl
rm
text.js
1722
0644
edit
dl
rm
text.js.map
6514
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/drizzle-orm/sqlite-core/columns/blob.cjs
(4164B)
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var blob_exports = {}; __export(blob_exports, { SQLiteBigInt: () => SQLiteBigInt, SQLiteBigIntBuilder: () => SQLiteBigIntBuilder, SQLiteBlobBuffer: () => SQLiteBlobBuffer, SQLiteBlobBufferBuilder: () => SQLiteBlobBufferBuilder, SQLiteBlobJson: () => SQLiteBlobJson, SQLiteBlobJsonBuilder: () => SQLiteBlobJsonBuilder, blob: () => blob }); module.exports = __toCommonJS(blob_exports); var import_entity = require("../../entity.cjs"); var import_utils = require("../../utils.cjs"); var import_common = require("./common.cjs"); class SQLiteBigIntBuilder extends import_common.SQLiteColumnBuilder { static [import_entity.entityKind] = "SQLiteBigIntBuilder"; constructor(name) { super(name, "bigint", "SQLiteBigInt"); } /** @internal */ build(table) { return new SQLiteBigInt(table, this.config); } } class SQLiteBigInt extends import_common.SQLiteColumn { static [import_entity.entityKind] = "SQLiteBigInt"; getSQLType() { return "blob"; } mapFromDriverValue(value) { if (Buffer.isBuffer(value)) { return BigInt(value.toString()); } if (value instanceof ArrayBuffer) { const decoder = new TextDecoder(); return BigInt(decoder.decode(value)); } return BigInt(String.fromCodePoint(...value)); } mapToDriverValue(value) { return Buffer.from(value.toString()); } } class SQLiteBlobJsonBuilder extends import_common.SQLiteColumnBuilder { static [import_entity.entityKind] = "SQLiteBlobJsonBuilder"; constructor(name) { super(name, "json", "SQLiteBlobJson"); } /** @internal */ build(table) { return new SQLiteBlobJson( table, this.config ); } } class SQLiteBlobJson extends import_common.SQLiteColumn { static [import_entity.entityKind] = "SQLiteBlobJson"; getSQLType() { return "blob"; } mapFromDriverValue(value) { if (Buffer.isBuffer(value)) { return JSON.parse(value.toString()); } if (value instanceof ArrayBuffer) { const decoder = new TextDecoder(); return JSON.parse(decoder.decode(value)); } return JSON.parse(String.fromCodePoint(...value)); } mapToDriverValue(value) { return Buffer.from(JSON.stringify(value)); } } class SQLiteBlobBufferBuilder extends import_common.SQLiteColumnBuilder { static [import_entity.entityKind] = "SQLiteBlobBufferBuilder"; constructor(name) { super(name, "buffer", "SQLiteBlobBuffer"); } /** @internal */ build(table) { return new SQLiteBlobBuffer(table, this.config); } } class SQLiteBlobBuffer extends import_common.SQLiteColumn { static [import_entity.entityKind] = "SQLiteBlobBuffer"; mapFromDriverValue(value) { if (Buffer.isBuffer(value)) { return value; } return Buffer.from(value); } getSQLType() { return "blob"; } } function blob(a, b) { const { name, config } = (0, import_utils.getColumnNameAndConfig)(a, b); if (config?.mode === "json") { return new SQLiteBlobJsonBuilder(name); } if (config?.mode === "bigint") { return new SQLiteBigIntBuilder(name); } return new SQLiteBlobBufferBuilder(name); } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { SQLiteBigInt, SQLiteBigIntBuilder, SQLiteBlobBuffer, SQLiteBlobBufferBuilder, SQLiteBlobJson, SQLiteBlobJsonBuilder, blob }); //# sourceMappingURL=blob.cjs.map
Save
cmd:
run