A javscript utility function which converts the base 64 safe encoded string to UInt8Array.
npm install urlb64touint8arrayThe Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
Used while exchanging secret key between client and server.
npm install urlb64touint8array
`Usage
`js
import toUint8Array from 'urlb64touint8array';
`or
`js
var toUint8Array = require('urlb64touint8array');
``