Created
April 15, 2016 19:12
-
-
Save gavinminami/09e8cbed133228c058f8630a9a02658d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var digits = '0123456789abcdef'; var pwd = ''; _(32).times(function() { pwd += digits.charAt(Math.floor(Math.random() * 16)); }); pwd; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment