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.5.3 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.29 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.28 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.27 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.26 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.25 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.24 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.23 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.22 node_modules/bower/node_modules/mout/random/randString.js