@indra.ai/deva 1.1.119 → 1.1.120
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1519,7 +1519,7 @@ class Deva {
|
|
|
1519
1519
|
const the_hash = createHash(algo);
|
|
1520
1520
|
the_hash.update(JSON.stringify(str));
|
|
1521
1521
|
const _digest = the_hash.digest('base64');
|
|
1522
|
-
return `${algo}
|
|
1522
|
+
return `${algo}-${_digest}`;
|
|
1523
1523
|
}
|
|
1524
1524
|
|
|
1525
1525
|
/**************
|