22 lines
343 B
JavaScript
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 () {
|
|
|
|
};
|