knowledgebase_law/node_modules/redux-persist/lib/stateReconciler/hardSet.js

12 lines
175 B
JavaScript
Raw Normal View History

2025-04-11 23:47:09 +08:00
"use strict";
exports.__esModule = true;
exports.default = hardSet;
/*
hardSet:
- hard set incoming state
*/
function hardSet(inboundState) {
return inboundState;
}