Skip to content

Commit

Permalink
Merge pull request #204 from Pmz94/master
Browse files Browse the repository at this point in the history
Adding a little bit of Mexico
  • Loading branch information
keitharm authored May 15, 2022
2 parents 2cff546 + 0fd2586 commit 2b96c57
Show file tree
Hide file tree
Showing 8 changed files with 3,707 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ public/dist
.viewsMin
npm-debug.log
public/download
.nyc_output
.nyc_output
.idea/
14 changes: 14 additions & 0 deletions api/.nextRelease/data/MX/inject.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const { random, randomItem, pad, range, uppercaseify, include, } = require('../../api');

module.exports = (inc, contents) => {
const pic = contents.picture;
delete contents.picture;

include(inc, contents, 'phone', '(6' + random(3, 2) + ') ' + random(3, 3) + ' ' + random(3, 4));
include(inc, contents, 'cell', '(6' + random(3, 2) + ') ' + random(3, 3) + ' ' + random(3, 4));
include(inc, contents, 'id', {
name: 'NSS',
value: random(3, 2) + ' ' + random(3, 2) + ' ' + random(3, 2) + ' ' + random(3, 4) + ' ' + random(3, 1)
});
include(inc, contents, 'picture', pic);
};
Loading

0 comments on commit 2b96c57

Please sign in to comment.