@hackthedev/dsync-sign 1.0.5 → 1.0.7

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/index.mjs +1 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -271,7 +271,7 @@ export class dSyncSign {
271
271
 
272
272
  if (typeof publicKeyOrGetter === "function") pub = await publicKeyOrGetter(target, targetOrRoot);
273
273
  if (!pub) return false;
274
-
274
+
275
275
  const payload = this.cloneWithoutSig(target);
276
276
  return Boolean(this.verifyData(payload, signature, pub));
277
277
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hackthedev/dsync-sign",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.mjs",
6
6
  "type": "module",