Archived
1
0
Fork 0
This repository has been archived on 2022-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
ytdlp-web/utils.js
2022-01-29 07:35:17 -05:00

4 lines
181 B
JavaScript

exports.generateId = function() {
var p = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
return [...Array(6)].reduce(a=>a+p[~~(Math.random()*p.length)],'');
}