operators.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. var __defProp = Object.defineProperty;
  2. var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
  3. var __export = (target, all) => {
  4. __markAsModule(target);
  5. for (var name in all)
  6. __defProp(target, name, { get: all[name], enumerable: true });
  7. };
  8. __export(exports, {
  9. Op: () => Op,
  10. default: () => operators_default
  11. });
  12. const Op = {
  13. eq: Symbol.for("eq"),
  14. ne: Symbol.for("ne"),
  15. gte: Symbol.for("gte"),
  16. gt: Symbol.for("gt"),
  17. lte: Symbol.for("lte"),
  18. lt: Symbol.for("lt"),
  19. not: Symbol.for("not"),
  20. is: Symbol.for("is"),
  21. in: Symbol.for("in"),
  22. notIn: Symbol.for("notIn"),
  23. like: Symbol.for("like"),
  24. notLike: Symbol.for("notLike"),
  25. iLike: Symbol.for("iLike"),
  26. notILike: Symbol.for("notILike"),
  27. startsWith: Symbol.for("startsWith"),
  28. endsWith: Symbol.for("endsWith"),
  29. substring: Symbol.for("substring"),
  30. regexp: Symbol.for("regexp"),
  31. notRegexp: Symbol.for("notRegexp"),
  32. iRegexp: Symbol.for("iRegexp"),
  33. notIRegexp: Symbol.for("notIRegexp"),
  34. between: Symbol.for("between"),
  35. notBetween: Symbol.for("notBetween"),
  36. overlap: Symbol.for("overlap"),
  37. contains: Symbol.for("contains"),
  38. contained: Symbol.for("contained"),
  39. adjacent: Symbol.for("adjacent"),
  40. strictLeft: Symbol.for("strictLeft"),
  41. strictRight: Symbol.for("strictRight"),
  42. noExtendRight: Symbol.for("noExtendRight"),
  43. noExtendLeft: Symbol.for("noExtendLeft"),
  44. and: Symbol.for("and"),
  45. or: Symbol.for("or"),
  46. any: Symbol.for("any"),
  47. all: Symbol.for("all"),
  48. values: Symbol.for("values"),
  49. col: Symbol.for("col"),
  50. placeholder: Symbol.for("placeholder"),
  51. join: Symbol.for("join"),
  52. match: Symbol.for("match")
  53. };
  54. var operators_default = Op;
  55. module.exports = Op;
  56. //# sourceMappingURL=operators.js.map