Skip to content

Commit baaba6d

Browse files
committed
fix: fix copy & paste error
1 parent b0d6bf3 commit baaba6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vendor/unique.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export type RecordKey = string | number | symbol;
44
// currently uniqueness is global to entire faker instance
55
// this means that faker should currently *never* return duplicate values across all API methods when using `Faker.unique`
66
// it's possible in the future that some users may want to scope found per function call instead of faker instance
7-
const found: Record<RecordKey, RecordKey> = {}; // global exclude list of results
7+
const found: Record<RecordKey, RecordKey> = {};
88

99
// global exclude list of results
1010
// defaults to nothing excluded

0 commit comments

Comments
 (0)