Files
Kmake/benchmark/fixtures/empty-test-reporter.js

9 lines
173 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
const { PassThrough } = require('node:stream');
module.exports = new PassThrough({
objectMode: true,
transform(chunk, encoding, callback) {
callback(null)
},
});