ShenNong_Simple/packages/字体精简工具/node_modules/ttf2woff2/bin/ttf2woff2.js
2024-10-30 15:28:42 +08:00

12 lines
252 B
JavaScript

#! /usr/bin/env node
var BufferStreams = require('bufferstreams');
var ttf2woff2 = require('../src');
process.stdin.pipe(new BufferStreams(function(err, buf, cb) {
if (err) {
throw err;
}
cb(null, ttf2woff2(buf));
})).pipe(process.stdout);