@shushed/helpers 0.0.161 → 0.0.162
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -109044,7 +109044,7 @@ var ActionHelper = class _ActionHelper {
|
|
|
109044
109044
|
this.flags = Object.fromEntries((flags || []).map((x) => [x, true]));
|
|
109045
109045
|
this.config = config;
|
|
109046
109046
|
await this.preOnExecute();
|
|
109047
|
-
const result = await this.onExecuteFunction(config, opts, message, this);
|
|
109047
|
+
const result = await this.onExecuteFunction(this.config, opts, message, this);
|
|
109048
109048
|
return result;
|
|
109049
109049
|
}
|
|
109050
109050
|
static create(options, onExecuteFunction) {
|