jsgar 3.8.0 → 3.8.1

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.
Files changed (2) hide show
  1. package/dist/gar.umd.js +1 -1
  2. package/package.json +1 -1
package/dist/gar.umd.js CHANGED
@@ -925,7 +925,7 @@
925
925
  // Convert keyName to array
926
926
  let keyNames = [];
927
927
  if (typeof keyName === 'string') {
928
- keyNames = keyName.split(/\s+/).filter(Boolean);
928
+ keyNames = [keyName];
929
929
  } else if (Array.isArray(keyName)) {
930
930
  keyNames = keyName;
931
931
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsgar",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "A Javascript client for the GAR protocol",
5
5
  "type": "module",
6
6
  "main": "dist/gar.umd.js",