/[sudobot]/trunk/tests/mocks/snowflakes.ts
ViewVC logotype

Annotation of /trunk/tests/mocks/snowflakes.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (hide annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 232 byte(s)
chore: add trunk
1 rakinar2 575 import { Snowflake } from "discord.js";
2    
3     export function randomSnowflake(): Snowflake {
4     let snowflake = "";
5    
6     for (let i = 0; i < 18; i++) {
7     snowflake += Math.floor(Math.random() * 10);
8     }
9    
10     return snowflake;
11     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26