10 lines
298 B
Plaintext
10 lines
298 B
Plaintext
|
[
|
||
|
'{{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(); }
|
||
|
}
|
||
|
]
|