UNPKG

@ngbrown/react-redux-form

Version:

Create Forms Easily with React and Redux

12 lines (8 loc) 215 B
function mapValues(object, iteratee) { const result = {}; Object.keys(object || {}).forEach((key) => { result[key] = iteratee(object[key], key, object); }); return result; } export default mapValues;