UNPKG

@ngbrown/react-redux-form

Version:

Create Forms Easily with React and Redux

15 lines (14 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = toArray; function toArray(object) { var result = []; Object.keys(object).forEach(function (key) { if (object.hasOwnProperty(key)) { result.push(object[key]); } }); return result; }