Exposes functions in RandomUtils.

This commit is contained in:
Boris Grozev 2015-11-06 15:45:34 -06:00
parent 005cc4b27a
commit 5542642933
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ var RandomUtil = {
ret += this.randomHexDigit(); ret += this.randomHexDigit();
} }
return ret; return ret;
} },
randomElement: randomElement,
randomAlphanumStr: randomAlphanumStr
}; };
module.exports = RandomUtil; module.exports = RandomUtil;