@declaro/redis 2.0.0-beta.53 → 2.0.0-beta.54
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/bun/index.js +2 -4
- package/dist/bun/index.js.map +3 -3
- package/dist/node/index.cjs +2 -4
- package/dist/node/index.cjs.map +3 -3
- package/dist/node/index.js +2 -4
- package/dist/node/index.js.map +3 -3
- package/package.json +3 -3
package/dist/node/index.js
CHANGED
|
@@ -35201,9 +35201,7 @@ class Su {
|
|
|
35201
35201
|
async emitAsync(u) {
|
|
35202
35202
|
await this.getListeners(u.type).reduce(async (r, F) => {
|
|
35203
35203
|
return await r, await F(u);
|
|
35204
|
-
}, Promise.resolve())
|
|
35205
|
-
console.error("Error in event listener", r);
|
|
35206
|
-
});
|
|
35204
|
+
}, Promise.resolve());
|
|
35207
35205
|
}
|
|
35208
35206
|
async emitAll(u) {
|
|
35209
35207
|
await Promise.all(this.getListeners(u.type).map((r) => r(u)));
|
|
@@ -43252,5 +43250,5 @@ export {
|
|
|
43252
43250
|
Config
|
|
43253
43251
|
};
|
|
43254
43252
|
|
|
43255
|
-
//# debugId=
|
|
43253
|
+
//# debugId=E7242E69FAAA6BF064756E2164756E21
|
|
43256
43254
|
//# sourceMappingURL=index.js.map
|