UNPKG

scpx-wallet

Version:

Scoop Core Wallet: dual-signature timelock crypto wallet - multi-asset, cross-platform and open-source

12 lines (10 loc) 394 B
// Distributed under AGPLv3 license: see /LICENSE for terms. Copyright 2019-2021 Dominic Morris. module.exports = { createReducer: (initialState, handlers) => { return (state = initialState, action) => { const handler = handlers[action.type] if (!handler) return state return { ...state, ...handler(state, action) } } } }