4 lines
144 B
JavaScript
4 lines
144 B
JavaScript
import authors from "content/authors";
|
|
|
|
export const findByUsername = (username) => authors.find(author => author.username === username) || {};
|