Go to file
EvilDeaaaadd 766429796f Update test after last commit 2019-12-30 02:46:08 +02:00
src Update test after last commit 2019-12-30 02:46:08 +02:00
.gitignore Generate docs 2019-08-01 17:20:58 +03:00
Cargo.toml Make 'y' char uppercase in full uppercase words 2019-08-01 21:51:39 +03:00
LICENSE Initial commit 2019-08-01 16:14:13 +03:00
README.md Make 'y' char uppercase in full uppercase words 2019-08-01 21:51:39 +03:00

README.md

owoify

A simple rust library for string owoification.
Inspired by:

Credits

Usage

Add this to Cargo.toml:

[dependencies]
owoify = "0.1.4"

example.rs:

use owoify::OwOifiable;

fn main() {
    let text = String::from("euthanize me senpai!!");
    println!("{}", text.owoify());
}

Documentation