we have need for decoding the standard uuid format to just the bytes, the reason for this is we want to re-encode as url encoded base64 to shorten our urls. note, if you wanted to provide a function for that as well... use something like
base64( toBytes( uuidv4() ) )
also an inverse
fromBytes
we have need for decoding the standard uuid format to just the bytes, the reason for this is we want to re-encode as url encoded base64 to shorten our urls. note, if you wanted to provide a function for that as well... use something like
base64( toBytes( uuidv4() ) )also an inverse
fromBytes