s3db.js 19.3.19 → 19.3.20
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/dist/s3db-lite.cjs +2 -2
- package/dist/s3db-lite.d.ts +3535 -0
- package/dist/s3db-lite.es.js +2 -2
- package/dist/s3db.cjs +2 -2
- package/dist/s3db.d.ts +19529 -0
- package/dist/s3db.es.js +2 -2
- package/package.json +2 -2
package/dist/s3db-lite.cjs
CHANGED
|
@@ -70435,8 +70435,8 @@ class Database extends SafeEventEmitter {
|
|
|
70435
70435
|
})();
|
|
70436
70436
|
this.version = '1';
|
|
70437
70437
|
this.s3dbVersion = (() => {
|
|
70438
|
-
const [ok, , version] = tryFnSync(() => (typeof globalThis['19.3.
|
|
70439
|
-
? globalThis['19.3.
|
|
70438
|
+
const [ok, , version] = tryFnSync(() => (typeof globalThis['19.3.20'] !== 'undefined' && globalThis['19.3.20'] !== '19.3.20'
|
|
70439
|
+
? globalThis['19.3.20']
|
|
70440
70440
|
: 'latest'));
|
|
70441
70441
|
return ok ? version : 'latest';
|
|
70442
70442
|
})();
|