Skip to content

Instantly share code, notes, and snippets.

@strangerintheq
Created August 12, 2018 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save strangerintheq/a548100e14e3998a11e51472197d52be to your computer and use it in GitHub Desktop.
Save strangerintheq/a548100e14e3998a11e51472197d52be to your computer and use it in GitHub Desktop.
random string generator
module.exports = function(i) {
var rnd = '';
while (rnd.length < i) {
rnd += Math.random().toString(36).substring(2);
}
return rnd.substring(0, i);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment