Skip to content

Commit 2089a26

Browse files
authored
Merge pull request #193 from tuliocasagrande/patch-1
Add CPF as Brazil's ID
2 parents 34e9a30 + b1ddac6 commit 2089a26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/.nextRelease/data/BR/inject.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ module.exports = (inc, contents) => {
77
include(inc, contents, 'phone', '(' + random(3, 2) + ') ' + random(3, 4) + '-' + random(3, 4));
88
include(inc, contents, 'cell', '(' + random(3, 2) + ') ' + random(3, 4) + '-' + random(3, 4));
99
include(inc, contents, 'id', {
10-
name: '',
11-
value: null
10+
name: 'CPF',
11+
value: random(3, 3) + '.' + random(3, 3) + '.' + random(3, 3) + '-' + random(3, 2)
1212
});
1313
include(inc, contents, 'picture', pic);
14-
};
14+
};

0 commit comments

Comments
 (0)