babel/lib/6to5/modules/ignore.js
Sebastian McKenzie d7ae3b506a fix linting errors
2014-11-04 15:53:11 +11:00

22 lines
343 B
JavaScript

module.exports = IgnoreFormatter;
function IgnoreFormatter() {
}
IgnoreFormatter.prototype.import = function () {
};
IgnoreFormatter.prototype.importSpecifier = function () {
};
IgnoreFormatter.prototype.export = function (node, nodes) {
nodes.push(node.declaration);
};
IgnoreFormatter.prototype.exportSpecifier = function () {
};