You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
1234567891011
  1. export function omit(obj, fields) {
  2. const clone = { ...obj }
  3. if (Array.isArray(fields)) {
  4. fields.forEach((key) => {
  5. delete clone[key]
  6. })
  7. }
  8. return clone
  9. }