UNPKG

203 BJavaScriptView Raw
1export default function omit(obj, fields) {
2 var clone = Object.assign({}, obj);
3 if (Array.isArray(fields)) {
4 fields.forEach(function (key) {
5 delete clone[key];
6 });
7 }
8 return clone;
9}
\No newline at end of file