mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-09-26 08:59:01 +02:00
3 lines
143 B
JavaScript
3 lines
143 B
JavaScript
import authors from "../data/authors";
|
|
|
|
export const findByUsername = (username) => authors.find(author => author.username === username) || {}; |