Skip to content

Instantly share code, notes, and snippets.

@rasikag
Created March 11, 2021 18:22
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 rasikag/9820ab78a248672884c9b076332a500e to your computer and use it in GitHub Desktop.
Save rasikag/9820ab78a248672884c9b076332a500e to your computer and use it in GitHub Desktop.
const user = await em.findOne(
User,
usernameOrEmail.includes("@")
? { email: usernameOrEmail }
: { username: usernameOrEmail }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment