Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.js 266B

1234567
  1. var crypto = require('crypto')
  2. if (typeof crypto.randomFill === 'function' && typeof crypto.randomFillSync === 'function') {
  3. exports.randomFill = crypto.randomFill
  4. exports.randomFillSync = crypto.randomFillSync
  5. } else {
  6. module.exports = require('./browser')
  7. }