data-faking 0.1.2

Generate massive amounts of fake data
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::utils::seeder;
use wasm_bindgen::prelude::*;

pub mod job;

#[wasm_bindgen(js_name = ko__person_job)]
pub fn job() -> String {
    use job::{KO__JOB, KO__JOB_LEN};
	KO__JOB[seeder::gen_range(0..KO__JOB_LEN)].to_string()
}