Advertisement
Guest User

Untitled

a guest
May 28th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const randomstring = require('randomstring');
  2.  
  3. const length = 81;
  4. const charset = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ9';
  5.  
  6. const seed_creation = module.exports = () => {
  7. return randomstring.generate({
  8. length: length,
  9. charset: charset
  10. });
  11. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement