From 394faaaf142e20043b701988611f5b7d73b44994 Mon Sep 17 00:00:00 2001 From: Charlike Mike Reagent Date: Thu, 19 Jun 2014 04:45:42 +0300 Subject: [PATCH] add through2 This will save a lots of bytes/kilobytes/megabytes. Almost for every plugin needs through/through2... --- index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 6746ee4..ed0a237 100644 --- a/index.js +++ b/index.js @@ -14,5 +14,6 @@ module.exports = { linefeed: require('./lib/linefeed'), combine: require('./lib/combine'), buffer: require('./lib/buffer'), - PluginError: require('./lib/PluginError') -}; \ No newline at end of file + PluginError: require('./lib/PluginError'), + through2: require('through2') +};