Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- '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);
- };
|