(nat)
| 380 | } |
| 381 | |
| 382 | fullNatName(nat) { |
| 383 | let mapping = { |
| 384 | AU: "Australia", |
| 385 | BR: "Brazil", |
| 386 | CA: "Canada", |
| 387 | CH: "Switzerland", |
| 388 | DE: "Germany", |
| 389 | DK: "Denmark", |
| 390 | ES: "Spain", |
| 391 | FI: "Finland", |
| 392 | FR: "France", |
| 393 | GB: "United Kingdom", |
| 394 | IE: "Ireland", |
| 395 | IR: "Iran", |
| 396 | NL: "Netherlands", |
| 397 | NO: "Norway", |
| 398 | NZ: "New Zealand", |
| 399 | TR: "Turkey", |
| 400 | US: "United States", |
| 401 | }; |
| 402 | return mapping[nat]; |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | function random(mode, length) { |