Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

11 lines
253B

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