UNPKG

react-native-web-headroom

Version:
17 lines (15 loc) 357 B
"use strict"; 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); } } } }; };