mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-19 13:39:56 -06:00
14 lines
198 B
JavaScript
14 lines
198 B
JavaScript
const random = require('randomstring')
|
|
|
|
// return a random id
|
|
const id = (length = 5) => {
|
|
return random.generate({
|
|
length,
|
|
capitalization: 'lowercase',
|
|
})
|
|
}
|
|
|
|
module.exports = {
|
|
id,
|
|
}
|