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
215 B
9 lines
215 B
import isNumber from './is-number';
|
|
/**
|
|
* 判断值是否为奇数
|
|
* @return 是否为奇数
|
|
*/
|
|
export default function isOdd(num) {
|
|
return isNumber(num) && num % 2 !== 0;
|
|
}
|
|
//# sourceMappingURL=is-odd.js.map
|