@cabloy/utils 1.0.47 → 1.0.48

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/hash.js +1 -1
  2. package/package.json +1 -1
package/dist/hash.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import objectHash from 'object-hash';
2
2
  export function hashkey(key) {
3
- if (key === undefined || key === null || key === false) {
3
+ if (key === undefined || key === null) {
4
4
  return '';
5
5
  }
6
6
  if (Array.isArray(key) || typeof key === 'object') {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cabloy/utils",
3
3
  "type": "module",
4
- "version": "1.0.47",
4
+ "version": "1.0.48",
5
5
  "description": "cabloy utils",
6
6
  "publishConfig": {
7
7
  "access": "public"