xdbc 1.0.106 → 1.0.107
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/DBC.js +1 -1
- package/package.json +1 -1
- package/src/DBC.ts +1 -1
package/dist/DBC.js
CHANGED
|
@@ -89,7 +89,7 @@ export class DBC {
|
|
|
89
89
|
// #endregion Check if a value of one of the method's parameter has been requested and pass it to the
|
|
90
90
|
// receptor, if so.
|
|
91
91
|
// biome-ignore lint/complexity/noThisInStatic: Necessary.
|
|
92
|
-
return originalMethod.apply(
|
|
92
|
+
return originalMethod.apply(args);
|
|
93
93
|
};
|
|
94
94
|
return descriptor;
|
|
95
95
|
}
|
package/package.json
CHANGED
package/src/DBC.ts
CHANGED
|
@@ -117,7 +117,7 @@ export class DBC {
|
|
|
117
117
|
// #endregion Check if a value of one of the method's parameter has been requested and pass it to the
|
|
118
118
|
// receptor, if so.
|
|
119
119
|
// biome-ignore lint/complexity/noThisInStatic: Necessary.
|
|
120
|
-
return originalMethod.apply(
|
|
120
|
+
return originalMethod.apply(args);
|
|
121
121
|
};
|
|
122
122
|
|
|
123
123
|
return descriptor;
|