Sha256: 9e7fca49c163d2792da29eddd67134de943799e0aa07de8dc4ff04253cd5fef0

Contents?: true

Size: 695 Bytes

Versions: 62

Compression:

Stored size: 695 Bytes

Contents

var isNumber = require('../lang/isNumber');
var isString = require('../lang/isString');
var randInt = require('./randInt');

    var defaultDictionary = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

    function randomString(length, dictionary) {
        if(!isNumber(length) || length <= 0) {
          length = 8;
        }

        if(!isString(dictionary) || dictionary.length < 1) {
          dictionary = defaultDictionary;
        }

        var result = '',
            domain = dictionary.length - 1;

        while(length--) {
          result += dictionary[randInt(0, domain)];
        }
        
        return result;
    }

    module.exports = randomString;

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.17 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.16 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.15 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.14 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.13 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.12 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.11 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.10 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.9 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/mout/random/randString.js