UNPKG

@ngbrown/react-redux-form

Version:

Create Forms Easily with React and Redux

10 lines (9 loc) 203 B
export default function toArray(object) { const result = []; Object.keys(object).forEach(key => { if (object.hasOwnProperty(key)) { result.push(object[key]); } }); return result; }