Skip to content

Instantly share code, notes, and snippets.

@moeamaya
Created June 17, 2020 14:54
Show Gist options
  • Save moeamaya/af2856ce9d435bf0d292cc666896769f to your computer and use it in GitHub Desktop.
Save moeamaya/af2856ce9d435bf0d292cc666896769f to your computer and use it in GitHub Desktop.
Loop through FontFace on a webpage
document.fonts.ready.then((fonts) => {
const fontFaces = Array.from(fonts);
console.log(fontFaces);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment