s3db.js 7.3.2 → 7.3.3

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.es.js CHANGED
@@ -7326,7 +7326,7 @@ class FilesystemCache extends Cache {
7326
7326
  }
7327
7327
 
7328
7328
  promisify(fs.mkdir);
7329
- const rmdir = promisify(fs.rmdir);
7329
+ const rmdir = promisify(fs.rm);
7330
7330
  const readdir = promisify(fs.readdir);
7331
7331
  const stat = promisify(fs.stat);
7332
7332
  const writeFile = promisify(fs.writeFile);
@@ -13204,7 +13204,7 @@ class Database extends EventEmitter {
13204
13204
  super();
13205
13205
  this.version = "1";
13206
13206
  this.s3dbVersion = (() => {
13207
- const [ok, err, version] = try_fn_default(() => true ? "7.3.2" : "latest");
13207
+ const [ok, err, version] = try_fn_default(() => true ? "7.3.3" : "latest");
13208
13208
  return ok ? version : "latest";
13209
13209
  })();
13210
13210
  this.resources = {};