mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +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;
|
||
|
};
|