My first Crypto Blog

This is my first crypto Blog.
import cryptoRandomString from 'crypto-random-string';

cryptoRandomString({length: 10}); //=> '2cf05d94db'

cryptoRandomString({length: 10, type: 'base64'}); //=> 'YMiMbaQl6I'

cryptoRandomString({length: 10, type: 'url-safe'}); //=> 'YN-tqc8pOw'

cryptoRandomString({length: 10, type: 'numeric'}); //=> '8314659141'

cryptoRandomString({length: 6, type: 'distinguishable'}); //=> 'CDEHKM'

cryptoRandomString({length: 10, type: 'ascii-printable'}); //=> '`#Rt8$IK>B'

cryptoRandomString({length: 10, type: 'alphanumeric'}); //=> 'DMuKL8YtE7'

cryptoRandomString({length: 10, characters: 'abc'}); //=> 'abaaccabac'