subsetty
1.0.0
fonttools を使用したノードのフォントのサブセット化
npm install subsetty
subset は 2 つの引数、フォントとサブセット テキストを取ります。 Ramda join('', uniq(subset))
でフィルタリングされたサブセット テキストは、重複した文字をすべて削除します。
Python 2.7、3.4 以降が必要です。
import { subset , toWoff } from './index'
subset ( buffer , 'hello world' )
. then ( font => /* do something with the font buffer */ )
toWoff ( buffer )
. then ( font => /* do something with the font buffer */ )