Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

11 rindas
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. };