akeyless-client-commons 1.0.189 → 1.0.190

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.
@@ -1725,8 +1725,7 @@ var TableProvider = function(props) {
1725
1725
  return allKeys.filter(function(val) {
1726
1726
  return !noneSearchKeys.includes(val);
1727
1727
  }).some(function(key) {
1728
- var res = cleanString(String(item[key])).includes(normalizedSearchQuery);
1729
- return res;
1728
+ return cleanString(String(item[key])).includes(normalizedSearchQuery);
1730
1729
  });
1731
1730
  });
1732
1731
  }
@@ -1509,8 +1509,7 @@ var TableProvider = function(props) {
1509
1509
  return allKeys.filter(function(val) {
1510
1510
  return !noneSearchKeys.includes(val);
1511
1511
  }).some(function(key) {
1512
- var res = cleanString(String(item[key])).includes(normalizedSearchQuery);
1513
- return res;
1512
+ return cleanString(String(item[key])).includes(normalizedSearchQuery);
1514
1513
  });
1515
1514
  });
1516
1515
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.189",
3
+ "version": "1.0.190",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",