mirror of
https://github.com/lifegpc/pixiv_downloader.git
synced 2026-07-08 01:32:41 +08:00
9 lines
157 B
Rust
9 lines
157 B
Rust
use json::JsonValue;
|
|
|
|
pub fn check_crf(obj: &JsonValue) -> bool {
|
|
match obj.as_f32() {
|
|
Some(crf) => crf >= -1f32,
|
|
None => false,
|
|
}
|
|
}
|