There was an error while loading. Please reload this page.
1 parent b0d6bf3 commit baaba6dCopy full SHA for baaba6d
1 file changed
src/vendor/unique.ts
@@ -4,7 +4,7 @@ export type RecordKey = string | number | symbol;
4
// currently uniqueness is global to entire faker instance
5
// this means that faker should currently *never* return duplicate values across all API methods when using `Faker.unique`
6
// 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
+const found: Record<RecordKey, RecordKey> = {};
8
9
// global exclude list of results
10
// defaults to nothing excluded
0 commit comments