cozy/cozy-mobile

View on GitHub
src/app/lib/random.coffee

Summary

Maintainability
Test Coverage
module.exports.randomString = (length=32) ->
    string = ""
    string += Math.random().toString(36).substr(2) while string.length < length
    string.substr 0, length