UNPKG

257 BJavaScriptView Raw
1import reduce from './reduce';
2export default (function (obj, keys) {
3 return reduce(obj, function (r, curr, key) {
4 if (!keys.includes(key)) {
5 r[key] = curr;
6 }
7 return r;
8 }, {});
9});
10//# sourceMappingURL=omit.js.map
\No newline at end of file