mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-26 07:59:48 +03:00
Arrow function
This commit is contained in:
parent
9301ea438d
commit
eee6c6338f
|
@ -38,10 +38,10 @@ const merger = (styling: Styling) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const mergeStyling = function mergeStyling(
|
const mergeStyling = (
|
||||||
customStyling: StylingValue,
|
customStyling: StylingValue,
|
||||||
defaultStyling: StylingValue
|
defaultStyling: StylingValue
|
||||||
): StylingValue | undefined {
|
): StylingValue | undefined => {
|
||||||
if (customStyling === undefined) {
|
if (customStyling === undefined) {
|
||||||
return defaultStyling;
|
return defaultStyling;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user