words

Function words 

Source
pub fn words() -> Vec<String>
Expand description

Loads the list of words into a Vec<String>

Example:

use sensitive_words::words;
 
let my_word = "cool!";
if words().contains(&my_word.to_string()) {
  println!("Cool!");
}