10 lines
298 B
Plaintext
Executable File
10 lines
298 B
Plaintext
Executable File
[
|
|
'{{repeat(100)}}',
|
|
{
|
|
Id: '{{index()}}',
|
|
// retourne 'M' ou 'F' aléatoirement
|
|
Civilite: function(tags){ return (tags.gender() == 'female') ? 'F' : 'M'; },
|
|
Nom: function(tags){ return tags.surname().toUpperCase(); },
|
|
Prenom: function(tags){ return tags.firstName(); }
|
|
}
|
|
] |