Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Lodo4ka/c4bb5eacc8bce2ea0b0160f0bf85f446 to your computer and use it in GitHub Desktop.

Select an option

Save Lodo4ka/c4bb5eacc8bce2ea0b0160f0bf85f446 to your computer and use it in GitHub Desktop.
const clearFieldOfObject = obj => {
Object.keys(obj).map(key => {
if (
key !== "status_in_work" &&
key !== "status_paid" &&
key !== "status_wait_mount" &&
key !== "status_delivered" &&
key !== "status_mounted" &&
key !== "status_fullfilled"
) {
delete obj[key];
}
});
return obj;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment