@annalib/anna-core 12.1.2 → 12.1.3

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.
@@ -6217,6 +6217,12 @@ class AnnaPersistingFilterService {
6217
6217
  getActualQueryParams(key) {
6218
6218
  return localStorage.getItem(key);
6219
6219
  }
6220
+ convertObjToQueryString(paramsObject) {
6221
+ return Object
6222
+ .keys(paramsObject)
6223
+ .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(paramsObject[key])}`)
6224
+ .join('&');
6225
+ }
6220
6226
  }
6221
6227
  AnnaPersistingFilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaPersistingFilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6222
6228
  AnnaPersistingFilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaPersistingFilterService, providedIn: "root" });