UNPKG

@tasolutions/express-core

Version:
14 lines (10 loc) 294 B
'use strict'; module.exports = { bookingCode: () => { let result = ""; const regex = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; for (var i = 0; i < 6; i++) result += regex.charAt(Math.floor(Math.random() * regex.length)); return result; } };