parse_cfemail

Function parse_cfemail 

Source
pub fn parse_cfemail<T: AsRef<str>>(data: T) -> String
Expand description

Parses data-cfemail attribute and returns the email address.

ยงExamples

use aidoku::helpers::cfemail::parse_cfemail;
assert_eq!(
    parse_cfemail("98d1fcf7f4f5d8ebecfdea"),
    "Idolm@ster",
);