mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-22 20:01:59 +00:00
Fix code styled format
This commit is contained in:
@@ -4,9 +4,9 @@ const VALUE = 'value';
|
||||
const ERROR = 'error';
|
||||
const REQUIRED_FIELD_ERROR = 'This is required field';
|
||||
|
||||
function isBool(value: unknown) {
|
||||
const isBool = (value: unknown) => {
|
||||
return typeof value === 'boolean';
|
||||
}
|
||||
};
|
||||
|
||||
const isObject = (value: unknown) => {
|
||||
return typeof value === 'object' && value !== null;
|
||||
|
||||
Reference in New Issue
Block a user