Last active
June 12, 2023 16:20
Revisions
-
PsyGik revised this gist
Jun 12, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const email = faker.internet.email({ firstName, lastName, provider: 'mailinator.com' }); const country = faker.location.countryCode(); const state = faker.location.state(); const pin_code = faker.location.zipCode({state}); document.getElementById("firstName").value = firstName; document.getElementById("lastName").value = lastName; -
PsyGik revised this gist
Jun 12, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const firstName = faker.person.firstName(); const lastName = faker.person.lastName(); const email = faker.internet.email({ firstName, lastName, provider: 'mailinator.com' }); const country = faker.location.countryCode(); const state = faker.location.state(); const pin_code = faker.location.zipCode(); -
PsyGik revised this gist
Jun 12, 2023 . 1 changed file with 12 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,15 @@ import { faker } from 'https://cdn.skypack.dev/@faker-js/faker'; const firstName = faker.person.firstName(); const lastName = faker.person.lastName(); const email = faker.internet.email({ firstName, lastName, provider: 'mailinator.com' }); const country = faker.location.country(); const state = faker.location.state(); const pin_code = faker.location.zipCode(); document.getElementById("firstName").value = firstName; document.getElementById("lastName").value = lastName; document.getElementById("email").value = email; document.getElementById("address.country").value = country; document.getElementById("address.state").value = state; document.getElementById("address.postal_code").value = pin_code; -
PsyGik revised this gist
Jun 12, 2023 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ import { faker } from 'https://cdn.skypack.dev/@faker-js/faker'; // Caitlyn Kerluke @@ -7,4 +6,3 @@ // Rusty@arne.info const randomEmail = faker.internet.email(); console.log(randomName,randomEmail) -
PsyGik created this gist
Jun 12, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ <script type="module"> import { faker } from 'https://cdn.skypack.dev/@faker-js/faker'; // Caitlyn Kerluke const randomName = faker.person.fullName(); // Rusty@arne.info const randomEmail = faker.internet.email(); console.log(randomName,randomEmail) </script>