knowledgebase_law/node_modules/redux-persist/lib/stateReconciler/hardSet.js
2025-04-11 11:47:09 -04:00

12 lines
175 B
JavaScript

"use strict";
exports.__esModule = true;
exports.default = hardSet;
/*
hardSet:
- hard set incoming state
*/
function hardSet(inboundState) {
return inboundState;
}