beta/src/utils/getAuthor.ts (12 lines of code) (raw):

/* * Copyright (c) Facebook, Inc. and its affiliates. */ import authorsJson from 'authors.json'; /** Return author info, */ export function getAuthor(author: string) { const person = authorsJson[author as keyof typeof authorsJson]; if (!person) { console.warn('Invalid author. Did you add it to authors.json??'); return { name: 'React Team', url: 'https://twitter.com/reactjs', }; } return person; }