all.cjs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. "use strict";
  2. var __defProp = Object.defineProperty;
  3. var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
  4. var __getOwnPropNames = Object.getOwnPropertyNames;
  5. var __hasOwnProp = Object.prototype.hasOwnProperty;
  6. var __export = (target, all) => {
  7. for (var name in all)
  8. __defProp(target, name, { get: all[name], enumerable: true });
  9. };
  10. var __copyProps = (to, from, except, desc) => {
  11. if (from && typeof from === "object" || typeof from === "function") {
  12. for (let key of __getOwnPropNames(from))
  13. if (!__hasOwnProp.call(to, key) && key !== except)
  14. __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  15. }
  16. return to;
  17. };
  18. var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
  19. var all_exports = {};
  20. __export(all_exports, {
  21. getSQLiteColumnBuilders: () => getSQLiteColumnBuilders
  22. });
  23. module.exports = __toCommonJS(all_exports);
  24. var import_blob = require("./blob.cjs");
  25. var import_custom = require("./custom.cjs");
  26. var import_integer = require("./integer.cjs");
  27. var import_numeric = require("./numeric.cjs");
  28. var import_real = require("./real.cjs");
  29. var import_text = require("./text.cjs");
  30. function getSQLiteColumnBuilders() {
  31. return {
  32. blob: import_blob.blob,
  33. customType: import_custom.customType,
  34. integer: import_integer.integer,
  35. numeric: import_numeric.numeric,
  36. real: import_real.real,
  37. text: import_text.text
  38. };
  39. }
  40. // Annotate the CommonJS export names for ESM import in node:
  41. 0 && (module.exports = {
  42. getSQLiteColumnBuilders
  43. });
  44. //# sourceMappingURL=all.cjs.map