UNPKG

fixed-react-data-grid-custom

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

11 lines (9 loc) 278 B
function createObjectWithProperties(originalObj, properties) { return properties.reduce((result, property) => { if (property in originalObj) { result[property] = originalObj[property]; } return result; }, {}); } export default createObjectWithProperties;