mirror of
https://github.com/github/codeql.git
synced 2026-01-19 09:24:46 +01:00
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
function sendRecord(firstName, lastName, dateOfBirth, streetAddress, postCode, city, country, email, website) {
|
|
sendResponse({
|
|
name: lastName + ', ' + firstName,
|
|
DOB: dateOfBirth,
|
|
address: streetAddress + '\n' + postCode + ' ' + city + '\n' + country,
|
|
email: email,
|
|
url: website
|
|
});
|
|
} |