Huthaifa-Dev / project

Detected the use of variables before they are defined JS-0357
Anti-pattern
Major
a month ago2 years old
'getUser' was used before it was defined
11};
12
13export const validate = (userName: string, password: string) => {
14  const user = getUser(userName);15  if (!user) {
16    return false;
17  }