UNPKG

excel-builder-vanilla

Version:

An easy way of building Excel files with javascript

9 lines (8 loc) 205 B
export function pick(object: any, keys: string[]) { return keys.reduce((obj: any, key: string) => { if (object?.hasOwnProperty(key)) { obj[key] = object[key]; } return obj; }, {}); }