workerboxjs
Version:
A secure sandbox to execute untrusted user JavaScript, in a web browser, without any risk to your own domain/site/page.
9 lines (7 loc) • 357 B
JavaScript
const generateUniqueId = () => {
globalThis.incrementor = (globalThis.incrementor || 0) + 1;
return globalThis.incrementor + '_' + Array(20)
.fill('!@#$%^&*()_+-=0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz')
.map(function (x) { return x[Math.floor(Math.random() * x.length)]; }).join('');
};
export default generateUniqueId;