1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-03 22:34:27 +00:00
Files
musix-oss/node_modules/crypto-random-string/index.js
MatteZ02 30022c7634 Modules
2020-03-03 22:30:50 +02:00

11 lines
253 B
JavaScript

'use strict';
const crypto = require('crypto');
module.exports = length => {
if (!Number.isFinite(length)) {
throw new TypeError('Expected a finite number');
}
return crypto.randomBytes(Math.ceil(length / 2)).toString('hex').slice(0, length);
};