babel/lib/6to5/modules/ignore.js
2014-11-03 18:18:51 +11:00

22 lines
402 B
JavaScript

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