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.3.21 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.20 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.19 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.18 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.17 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.16 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.15 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.14 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.13 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.12 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.11g node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.10 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.9 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.8 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.7 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.6 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.5 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.4 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.3 node_modules/bower/node_modules/mout/random/randString.js
trusty-festivity-extension-2.3.2 node_modules/bower/node_modules/mout/random/randString.js