Lists the unicode codepoints/characters of a font loaded by opentype.js
npm install font-chars
npm install font-chars
``
``
var opentype = require('opentype.js')
, fontChars = require('font-chars');
opentype.load('./path/to/font.ttf', function(err, font) {
if (err) {
console.log(err);
return;
}
console.log(fontChars.getCodepoints(font));
});
```