react-native-web-headroom
Version:
React Native Web Headroom
83 lines (73 loc) • 2.44 kB
JavaScript
"use strict";
module.exports = function (_ref) {
var t = _ref.types;
return {
name: "transform-remove-console",
visitor: {
CallExpression(path, state) {
var callee = path.get("callee");
if (!callee.isMemberExpression()) return;
if (isIncludedConsole(callee, state.opts.exclude)) {
// console.log()
if (path.parentPath.isExpressionStatement()) {
path.remove();
} else {
path.replaceWith(createVoid0());
}
} else if (isIncludedConsoleBind(callee, state.opts.exclude)) {
// console.log.bind()
path.replaceWith(createNoop());
}
},
MemberExpression: {
exit(path, state) {
if (isIncludedConsole(path, state.opts.exclude) && !path.parentPath.isMemberExpression()) {
if (path.parentPath.isAssignmentExpression() && path.parentKey === "left") {
path.parentPath.get("right").replaceWith(createNoop());
} else {
path.replaceWith(createNoop());
}
}
}
}
}
};
function isGlobalConsoleId(id) {
var name = "console";
return id.isIdentifier({
name
}) && !id.scope.getBinding(name) && id.scope.hasGlobal(name);
}
function isExcluded(property, excludeArray) {
return excludeArray && excludeArray.some(function (name) {
return property.isIdentifier({
name
});
});
}
function isIncludedConsole(memberExpr, excludeArray) {
var object = memberExpr.get("object");
var property = memberExpr.get("property");
if (isExcluded(property, excludeArray)) return false;
if (isGlobalConsoleId(object)) return true;
return isGlobalConsoleId(object.get("object")) && (property.isIdentifier({
name: "call"
}) || property.isIdentifier({
name: "apply"
}));
}
function isIncludedConsoleBind(memberExpr, excludeArray) {
var object = memberExpr.get("object");
if (!object.isMemberExpression()) return false;
if (isExcluded(object.get("property"), excludeArray)) return false;
return isGlobalConsoleId(object.get("object")) && memberExpr.get("property").isIdentifier({
name: "bind"
});
}
function createNoop() {
return t.functionExpression(null, [], t.blockStatement([]));
}
function createVoid0() {
return t.unaryExpression("void", t.numericLiteral(0));
}
};