Skip to content

Commit 82f8dcf

Browse files
authored
chore: use Primitive type from type-fest (#820)
This types-only change removes a custom `Primitive` type in favor of type-fest's. We defined them the same way so it shouldn't make a difference.
1 parent 71f571b commit 82f8dcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/hashmap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @typedef {string | number | bigint | boolean | undefined | symbol | null} Primitive */
1+
/** @import { Primitive } from 'type-fest' */
22

33
/**
44
* `Map` uses same-value-zero equality for keys, which makes it more difficult

0 commit comments

Comments
 (0)