PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
src
/
random
define(['./choice'], function (choice) { var _chars = '0123456789abcdef'.split(''); /** * Returns a random hexadecimal string */ function randHex(size){ size = size && size > 0? size : 6; var str = ''; while (size--) { str += choice(_chars); } return str; } return randHex; });
[-] randBit.js
[edit]
[-] randString.js
[edit]
[-] randBool.js
[edit]
[+]
..
[-] randSign.js
[edit]
[-] random.js
[edit]
[-] randInt.js
[edit]
[-] randHex.js
[edit]
[-] rand.js
[edit]
[-] choice.js
[edit]
[-] guid.js
[edit]