260e9a18d0
* Re-engineer UI in TypeScript * Switch to named imports where possible * Restructure file system layout * Update depencencies * Update README.md * Change explicit colors for better support for dark theme
4 lines
164 B
TypeScript
4 lines
164 B
TypeScript
export default (validator1: (value: any) => boolean, validator2: (value: any) => boolean) => {
|
|
return (value: any) => validator1(value) || validator2(value);
|
|
}
|