From fabf2a06c46c73d3abc1b09cabbfdb27c0b94073 Mon Sep 17 00:00:00 2001 From: jfreud Date: Tue, 5 Dec 2023 16:46:31 -0500 Subject: [PATCH] Adding reminder for inclusive pronouse #Issue 297 --- index.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/index.js b/index.js index c04c5a0..1cefd57 100644 --- a/index.js +++ b/index.js @@ -142,3 +142,11 @@ function splitOptions(options) { return {filter: {allow, deny}, text: {noBinary, sureness}} } + +function contentUsingPronouns() { + const REMINDER_PROBABILITY = 0.1; + if(Math.random() < REMINDER_PROBABILITY) { + process.stdout.write.log("Friendly reminder: please ensure you are using the correct pronouns that people state they use."); + } + } + \ No newline at end of file