UNPKG

@offactory/compress-fonts

Version:

Script that will compress your .ttf and .otf files into .woff and .woff2 files.

5 lines 160 B
module.exports = text => { return text.split('').map( char => { return `0u${char.charCodeAt(0).toString(16).padStart(4, '0')}`; }).join(', '); }