[][src]Function sensitive_words::words

pub fn words() -> Vec<String>

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!");
}