mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-25 15:40:06 +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,
|
||||
defaultStyling: StylingValue
|
||||
): StylingValue | undefined {
|
||||
): StylingValue | undefined => {
|
||||
if (customStyling === undefined) {
|
||||
return defaultStyling;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user