選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }