You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
217 B

import isNumber from './is-number';
/**
* 判断值是否为偶数
* @return 是否为偶数
*/
export default function isEven(num) {
return isNumber(num) && num % 2 === 0;
}
//# sourceMappingURL=is-even.js.map