fn need_ligatures()

in src/metrics/arabic.rs [86:92]


fn need_ligatures(target: u32) -> bool {
    if target >= 0x621 && target <= 0x64A {
        true
    } else {
        false
    }
}