index.js 238 B

12345678910
  1. 'use strict';
  2. var firstChunk = require('first-chunk-stream');
  3. var stripBom = require('strip-bom');
  4. module.exports = function () {
  5. return firstChunk({minSize: 3}, function (chunk, enc, cb) {
  6. this.push(stripBom(chunk));
  7. cb();
  8. });
  9. };