We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
// get fonts from // https://raw.githubusercontent.com/jonathantneal/google-fonts-complete/master/google-fonts.json import fonts from './google-fonts' const f = Object.entries(fonts).map(([key, { category, subsets }]) => { const j = JSON.stringify(subsets) if (category == 'display' && j == '["latin"]' || j == '["latin","latin-ext"]' ) return key }).filter(Boolean) console.log(JSON.stringify(f, null, 2))