1.0.1 • Published 6 years ago

@clevercloud/uuid-to-pokemon v1.0.1

Weekly downloads
9
License
MIT
Repository
-
Last release
6 years ago

uuid-to-pokemon

uuid-to-pokemon allows you to generate an adjective and a Pokemon name for a specified UUID.

Example : "12334567-abdb-12c3-a416-426s5512cba0" => Proud porygon.

How to use it

Just call the function uuid_get_name(YOUR_UUID) in order to get the name.

const uuidpokemon = require('uuid-to-pokemon');

let name = uuidpokemon.uuid_get_name(YOUR_UUID);

When can I use it ?

You can use it to compare a group of 100 random UUIDs without conflict. If you want to use it for more than 100 UUIDs, there are bigger chances to get name conflicts (less than 2% for 1000 UUIDs and less than 5% for 10 000 UUIDs).

There is no way yet to guess the UUID from the name.