From fa46f606555c603c547433d9e43774c507ba235b Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 19 Nov 2014 12:11:08 +1100 Subject: [PATCH] expose util as _util --- lib/6to5/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/6to5/index.js b/lib/6to5/index.js index 2585aab36d..924e08acb3 100644 --- a/lib/6to5/index.js +++ b/lib/6to5/index.js @@ -17,6 +17,9 @@ exports.polyfill = function () { exports.canCompile = util.canCompile; +// do not use this - this is for use by official maintained 6to5 plugins +exports._util = util; + exports.transform = transform; exports.transformFile = function (filename, opts, callback) {