UID¶
Generates a unique id string.
Parameters¶
None
Return Value¶
A string containing the uid generated.
Example Usage¶
import uid from '@mvps-genesis/uid';
const myUid = uid();
const anotherUid = uid();
console.log( myUid === anotherUid ); // false