billy-herrington-utils 2.0.5 → 2.0.6
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/billy-herrington-utils.es.js +2 -1
- package/dist/billy-herrington-utils.es.js.map +1 -1
- package/dist/billy-herrington-utils.umd.js +2 -1
- package/dist/billy-herrington-utils.umd.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/userscripts/rules/index.ts +3 -1
|
@@ -6095,7 +6095,7 @@ Expected function or array of functions, received type ${typeof e}.`
|
|
|
6095
6095
|
return r;
|
|
6096
6096
|
}
|
|
6097
6097
|
class RulesGlobal {
|
|
6098
|
-
constructor() {
|
|
6098
|
+
constructor(options) {
|
|
6099
6099
|
__publicField(this, "delay");
|
|
6100
6100
|
__publicField(this, "alternativeGenerator");
|
|
6101
6101
|
__publicField(this, "titleSelector");
|
|
@@ -6125,6 +6125,7 @@ Expected function or array of functions, received type ${typeof e}.`
|
|
|
6125
6125
|
__publicField(this, "dataManager");
|
|
6126
6126
|
__publicField(this, "infiniteScroller");
|
|
6127
6127
|
__publicField(this, "initialGrope");
|
|
6128
|
+
Object.assign(this, options);
|
|
6128
6129
|
this.paginationStrategy = getPaginationStrategy(this.paginationStrategyOptions);
|
|
6129
6130
|
this.store = new js(this.storeOptions);
|
|
6130
6131
|
const scheme = Hu(this.defaultSchemeOptions, this.customScheme);
|