WXL
2 天以前 c80bc467a41daa6cbae4e5515a300a8ca98cfeaa
node_modules/@babel/types/lib/modifications/removeProperties.js
@@ -13,7 +13,7 @@
    if (node[key] != null) node[key] = undefined;
  }
  for (const key of Object.keys(node)) {
    if (key[0] === "_" && node[key] != null) node[key] = undefined;
    if (key.startsWith("_") && node[key] != null) node[key] = undefined;
  }
  const symbols = Object.getOwnPropertySymbols(node);
  for (const sym of symbols) {