subframe7536 / local-font

wrapper of experimental queryLocalFonts API

Home Page:https://www.npmjs.com/package/local-font

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

local-font

wrapper of experimental queryLocalFonts API

caniuse

utils

import {
  isSupportQueryLocalFonts,
  queryFontList,
  queryTargetFontBlob,
} from 'local-font'

if (isSupportQueryLocalFonts()) {
  await queryFontList() // ==> FontData[]
  await queryTargetFontBlob('ComicSansMS') // ==> Blob | null
}

typescript support

in tsconfig.json:

{
  "compilerOptions": {
    "types": [
      "local-font/types"
    ]
  }
}

About

wrapper of experimental queryLocalFonts API

https://www.npmjs.com/package/local-font

License:MIT License


Languages

Language:TypeScript 92.9%Language:JavaScript 7.1%