[go: up one dir, main page]

unicode-id-start 1.3.0

Determine whether characters have the ID_Start or ID_Continue properties according to Unicode Standard Annex #31
Documentation
1
2
3
4
5
6
7
8
9
10
11
use unicode_id_start::is_id_continue_unicode;

#[test]
fn legacy_katakana_middle_dot_patch() {
    // U+30FB KATAKANA MIDDLE DOT
    // https://util.unicode.org/UnicodeJsps/character.jsp?a=30FB
    assert!(!is_id_continue_unicode(''));
    // U+FF65 HALFWIDTH KATAKANA MIDDLE DOT
    // https://util.unicode.org/UnicodeJsps/character.jsp?a=FF65
    assert!(!is_id_continue_unicode(''));
}