use crate::utils::seeder;
use wasm_bindgen::prelude::*;
#[wasm_bindgen(js_name = word_conjunction)]
pub fn conjunction() -> String {
EN_CONJUNCTION[seeder::gen_range(0..EN_CONJUNCTION_LEN)].to_string()
}
static EN_CONJUNCTION: [&'static str; 51] = [
"after",
"although",
"and",
"as",
"because",
"before",
"but",
"consequently",
"even",
"finally",
"for",
"furthermore",
"hence",
"how",
"however",
"if",
"inasmuch",
"incidentally",
"indeed",
"instead",
"lest",
"likewise",
"meanwhile",
"nor",
"now",
"once",
"or",
"provided",
"since",
"so",
"supposing",
"than",
"that",
"though",
"till",
"unless",
"until",
"what",
"when",
"whenever",
"where",
"whereas",
"wherever",
"whether",
"which",
"while",
"who",
"whoever",
"whose",
"why",
"yet",
];
static EN_CONJUNCTION_LEN: usize = EN_CONJUNCTION.len();