mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
docs: remove impertinent Jsdocs comments (no-changelog) (#4181)
* 🔥 Remove impertinent Jsdocs comments
* Lint fixes
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
* Math.random should be unique because of its seeding algorithm.
|
||||
* Convert it to base 36 (numbers + letters), and grab the first 9 characters after the decimal.
|
||||
*
|
||||
* @param baseId
|
||||
*/
|
||||
export function uid (baseId?: string): string {
|
||||
return `${baseId ? `${baseId}-` : ''}${Math.random().toString(36).substring(2, 11)}`;
|
||||
|
||||
Reference in New Issue
Block a user