react-native-web-headroom
Version:
React Native Web Headroom
17 lines (15 loc) • 357 B
JavaScript
;
module.exports = function (_ref) {
var t = _ref.types;
var VOID_0 = t.unaryExpression("void", t.numericLiteral(0), true);
return {
name: "transform-undefined-to-void",
visitor: {
ReferencedIdentifier(path) {
if (path.node.name === "undefined") {
path.replaceWith(VOID_0);
}
}
}
};
};