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 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(target, args);
92
+ return originalMethod.apply(args);
93
93
  };
94
94
  return descriptor;
95
95
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.106",
2
+ "version": "1.0.107",
3
3
  "name": "xdbc",
4
4
  "scripts": {
5
5
  "docs": "typedoc",
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(target, args);
120
+ return originalMethod.apply(args);
121
121
  };
122
122
 
123
123
  return descriptor;