MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / generateRandomSuffix

Function generateRandomSuffix

background.js:1889–1896  ·  view source on GitHub ↗
(length = 6)

Source from the content-addressed store, hash-verified

1887}
1888
1889function generateRandomSuffix(length = 6) {
1890 const chars = 'abcdefghjkmnpqrstuvwxyz23456789';
1891 let suffix = '';
1892 for (let i = 0; i < length; i++) {
1893 suffix += chars[Math.floor(Math.random() * chars.length)];
1894 }
1895 return suffix;
1896}
1897
1898const GMAIL_ALIAS_WORDS = [
1899 'amber', 'apple', 'ash', 'berry', 'birch', 'blue', 'brook', 'cedar',

Callers 1

buildGeneratedAliasEmailFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected