Skip to content

Instantly share code, notes, and snippets.

@JWLangford
Last active April 15, 2021 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JWLangford/04a384ee54f4aff2d0c502403731d509 to your computer and use it in GitHub Desktop.
Save JWLangford/04a384ee54f4aff2d0c502403731d509 to your computer and use it in GitHub Desktop.
const buildBackendUser = (user: IUserState): IUser => {
const { paymentNeeded, daysRemainingInTrial, hasEdited, ...restUser } = user;
return restUser;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment