@omegup/msync 0.0.95 → 0.0.96

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.
package/index.esm.js CHANGED
@@ -386,7 +386,7 @@ const filter = ({ as, cond, expr, limit, }) => asExpr({
386
386
  input: expr.raw(f).get(),
387
387
  as,
388
388
  cond: cond.raw(f).get(),
389
- limit: limit?.raw(f).get(),
389
+ limit: limit?.raw(f).get() ?? null,
390
390
  },
391
391
  }),
392
392
  });
package/index.js CHANGED
@@ -388,7 +388,7 @@ const filter = ({ as, cond, expr, limit, }) => asExpr({
388
388
  input: expr.raw(f).get(),
389
389
  as,
390
390
  cond: cond.raw(f).get(),
391
- limit: limit?.raw(f).get(),
391
+ limit: limit?.raw(f).get() ?? null,
392
392
  },
393
393
  }),
394
394
  });
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "module": "index.esm.js",
4
4
  "typings": "index.d.ts",
5
5
  "name": "@omegup/msync",
6
- "version": "0.0.95",
6
+ "version": "0.0.96",
7
7
  "dependencies": {
8
8
  "dayjs": "^1.11.9",
9
9
  "dotenv": "^16.3.1",