This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
node-task/node_modules/csurf/node_modules/csrf/node_modules/rndm/index.js

11 lines
261 B
JavaScript
Raw Normal View History

2014-09-24 17:56:53 -04:00
var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
var length = chars.length
module.exports = function rndm(len) {
var salt = ''
for (var i = 0; i < len; i++)
salt += chars[Math.floor(length * Math.random())]
return salt
}