aboutsummaryrefslogtreecommitdiff
path: root/src/persistent-hash-map.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'src/persistent-hash-map.mjs')
-rw-r--r--src/persistent-hash-map.mjs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/persistent-hash-map.mjs b/src/persistent-hash-map.mjs
index 911da05..ff849d8 100644
--- a/src/persistent-hash-map.mjs
+++ b/src/persistent-hash-map.mjs
@@ -77,7 +77,7 @@ function hashObject(o) {
try {
const code = o.hashCode(o);
if (typeof code === "number") {
- return code
+ return code;
}
} catch {}
}
@@ -955,4 +955,3 @@ export default class PMap {
return equal;
}
}
-