fix(DatetimePicker): error in some edge cases (#10186)

This commit is contained in:
neverland 2022-01-14 16:09:57 +08:00 committed by GitHub
parent edaf7ec45b
commit 22ee50576c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,10 @@
import { isNaN } from '../utils/validate/number';
export function times(n: number, iteratee: (index: number) => any[]) {
if (n < 0) {
return [];
}
let index = -1;
const result = Array(n);