UNPKG

qwc2

Version:
15 lines (14 loc) 367 B
/** * Copyright 2021-2024 Sourcepole AG * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ var ReducerIndex = { reducers: {}, register: function register(name, reducer) { ReducerIndex.reducers[name] = reducer; } }; export default ReducerIndex;