嗨我想知道是否有人能解释我在Spark代码库中找到的这个签名。它看起来像一个递归数据类型,它用于构建查询计划,所以它有意义。有没有人对此有详细的了解?
src/main/resources/static/js/store/index.js
const storeFactory = (initialState=stateData) =>
applyMiddleware(logger, saver)(createStore)(
combineReducers({carsReducer}),
(localStorage['redux-store']) ?
JSON.parse(localStorage['redux-store']) :
initialState
)