This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

increase probability

+1 -1
+1 -1
src/wolf-noise-generator.ts
··· 50 50 let currentSentenceLength = 0; 51 51 52 52 // Determine whether to generate a shorter post, longer post, or very short post 53 - const shorterPostProbability = 0.7; // 70% chance of generating a shorter or very short post 53 + const shorterPostProbability = 0.9; // 90% chance of generating a shorter or very short post 54 54 const generateShorterOrVeryShortPost = Math.random() < shorterPostProbability; 55 55 let maxLength; 56 56