UNPKG

@zohodesk/utils

Version:

Unified Component Library - Utils

11 lines (10 loc) 220 B
export default (keys => { return function omit(obj) { return Object.keys(obj).reduce((res, next) => { if (!keys.includes(next)) { res[next] = obj[next]; } return res; }, {}); }; });