'update-form' module.exports.renderPage(reducers[reducer](store, action)) } module.exports.renderPage = function (state) { // Write the state to the hidden input so that form reloads on back nav stateEl.value = JSON.stringify(state) store = state var newTree = formPartial(store); var patches = diff(tree, newTree); rootNode = patch(rootNode, patches); tree = newTree; }