(length)
| 3 | const utility = require('../'); |
| 4 | |
| 5 | function randomString(length) { |
| 6 | return crypto.randomBytes(length).toString('base64'); |
| 7 | } |
| 8 | |
| 9 | function pseudoRandomString(length) { |
| 10 | return crypto.pseudoRandomBytes(length).toString('base64'); |
no outgoing calls
no test coverage detected
searching dependent graphs…