Roadmap to becoming a developer in 2022
 
 
 
 
 

3 lines
144 B

import authors from "storage/authors";
export const findByUsername = (username) => authors.find(author => author.username === username) || {};