UNPKG

@technobuddha/library

Version:
13 lines (12 loc) 352 B
import isInteger from 'lodash/isInteger'; import isMultipleOf from '../isMultipleOf'; /** * Tests to see if the specified value is an even integer * * @param input The number to test * @returns true if the number is an even integer */ export function isEven(input) { return isInteger(input) && isMultipleOf(input, 2); } export default isEven;