您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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