Files
est-frame/node_modules/unique-string/index.js
2025-10-22 05:38:27 +00:00

6 lines
141 B
JavaScript
Executable File

import cryptoRandomString from 'crypto-random-string';
export default function uniqueString() {
return cryptoRandomString({length: 32});
}