5 lines
114 B
TypeScript
5 lines
114 B
TypeScript
const testMax: (args: MinimalInputTestArgs) => boolean = ({ max, min }) =>
|
|
max >= min;
|
|
|
|
export default testMax;
|