Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created June 5, 2021 01:31
Show Gist options
  • Save mosufy/e4bef0564078c83d7f1aa41f5ed54209 to your computer and use it in GitHub Desktop.
Save mosufy/e4bef0564078c83d7f1aa41f5ed54209 to your computer and use it in GitHub Desktop.
import db from 'Db';
export const checkUsernameExists = username => {
return db.select('*')
->from('users')
->where('username', username)
->first();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment