Skip to content

Instantly share code, notes, and snippets.

@mosufy
Last active June 5, 2021 01:49
Show Gist options
  • Save mosufy/de5f2993ba3a2a34c8e08fc1f5e86d1f to your computer and use it in GitHub Desktop.
Save mosufy/de5f2993ba3a2a34c8e08fc1f5e86d1f to your computer and use it in GitHub Desktop.
import { validateEmail } from './validateEmail';
export const createUser = async (params) => {
validateEmail(params.email);
await insertUser(params);
}
export const updateUser = params => {
validateEmail(params.email);
await updateUser(params);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment