7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import { MinimalInputTestArgs } from '../../types/TestInputFunction';
|
|
|
|
const testMax: (args: MinimalInputTestArgs) => boolean = ({ max, min }) =>
|
|
max >= min;
|
|
|
|
export default testMax;
|