Created
October 30, 2013 23:45
-
-
Save btmills/7242262 to your computer and use it in GitHub Desktop.
Generate a random string id given a set of characters and a desired length
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id = (chars, len) -> | |
(chars[Math.ceil(Math.random()*chars.length)-1] for i in [1..len]).join('') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment