mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
export function validProgress(progress) {
|
|
if (!progress || progress < 0) {
|
|
return 0;
|
|
} else if (progress > 100) {
|
|
return 100;
|
|
}
|
|
return progress;
|
|
};
|