ac-storage 0.14.0 → 0.14.1
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/bundle.cjs +3 -3
- package/dist/bundle.cjs.map +1 -1
- package/dist/bundle.mjs +3 -3
- package/dist/bundle.mjs.map +1 -1
- package/package.json +1 -1
- package/_TESTPATH/ac-drop/.acstorage +0 -8
package/dist/bundle.cjs
CHANGED
|
@@ -1604,13 +1604,13 @@ class ACSubStorage {
|
|
|
1604
1604
|
await this.#master.move(this.#prefix + ':' + oldIdentifier, this.#prefix + ':' + newIdentifier);
|
|
1605
1605
|
}
|
|
1606
1606
|
async dropDir(identifier) {
|
|
1607
|
-
await this.dropDir(this.#prefix + ':' + identifier);
|
|
1607
|
+
await this.#master.dropDir(this.#prefix + ':' + identifier);
|
|
1608
1608
|
}
|
|
1609
1609
|
async drop(identifier) {
|
|
1610
|
-
await this.drop(this.#prefix + ':' + identifier);
|
|
1610
|
+
await this.#master.drop(this.#prefix + ':' + identifier);
|
|
1611
1611
|
}
|
|
1612
1612
|
async dropAll() {
|
|
1613
|
-
await this.dropDir(this.#prefix);
|
|
1613
|
+
await this.#master.dropDir(this.#prefix);
|
|
1614
1614
|
}
|
|
1615
1615
|
async commit(identifier = '') {
|
|
1616
1616
|
await this.#master.commit(this.#prefix + ':' + identifier);
|