inferred-types 0.53.4 → 0.53.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -253,6 +253,7 @@ __export(src_exports, {
253
253
  csv: () => csv,
254
254
  defineCss: () => defineCss,
255
255
  defineObj: () => defineObj,
256
+ defineObject: () => defineObject,
256
257
  defineTuple: () => defineTuple,
257
258
  endsWith: () => endsWith,
258
259
  ensureLeading: () => ensureLeading,
@@ -5121,6 +5122,9 @@ function isLeapYear(val) {
5121
5122
  }
5122
5123
  return year % 100 === 0 ? year % 400 === 0 : year % 4 === 0;
5123
5124
  }
5125
+ function defineObject(defn) {
5126
+ return defn;
5127
+ }
5124
5128
  function entries(obj) {
5125
5129
  const iterable = {
5126
5130
  *[Symbol.iterator]() {
@@ -7730,6 +7734,7 @@ var ExifSaturation = /* @__PURE__ */ ((ExifSaturation2) => {
7730
7734
  csv,
7731
7735
  defineCss,
7732
7736
  defineObj,
7737
+ defineObject,
7733
7738
  defineTuple,
7734
7739
  endsWith,
7735
7740
  ensureLeading,