utilitas 2001.1.107 → 2001.1.108

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/lib/manifest.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  const manifest = {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "2001.1.107",
4
+ "version": "2001.1.108",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",
package/lib/memory.mjs CHANGED
@@ -57,7 +57,7 @@ const handleResult = (resp, options) => {
57
57
  let result = {};
58
58
  if (Array.isArray(resp)) {
59
59
  for (let i in resp) {
60
- result[resp[i].key.split('/').pop()] = resp[i].value;
60
+ result[resp[i].key.split('/').pop().toLowerCase()] = resp[i].value;
61
61
  }
62
62
  } else { result = resp?.value; }
63
63
  resp = result;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "utilitas",
3
3
  "description": "Just another common utility for JavaScript.",
4
- "version": "2001.1.107",
4
+ "version": "2001.1.108",
5
5
  "private": false,
6
6
  "homepage": "https://github.com/Leask/utilitas",
7
7
  "main": "index.mjs",