new changes

This commit is contained in:
Niranjan
2026-04-07 05:05:28 +05:30
parent 7c070224bd
commit a18bba15f2
29975 changed files with 3247495 additions and 2761 deletions

View File

@@ -0,0 +1,17 @@
#! /usr/bin/env node
import {
BufferStream
} from 'bufferstreams';
import ttf2woff2 from '../dist/index.js';
process.stdin
.pipe(
new BufferStream(function (err, buf, cb) {
if (err) {
throw err;
}
cb(null, ttf2woff2(buf));
}),
)
.pipe(process.stdout);