Skip to content

Instantly share code, notes, and snippets.

@lerouxb
Created November 6, 2018 10:43
Show Gist options
  • Save lerouxb/ba79f78610b055126b9b20d08ee8195a to your computer and use it in GitHub Desktop.
Save lerouxb/ba79f78610b055126b9b20d08ee8195a to your computer and use it in GitHub Desktop.
exports.whatIsIt = function (node) {
const matches = [];
for (const [key, value] of Object.entries(Recast.types.namedTypes)) {
if (value.check(node)) {
matches.push(key);
}
}
return matches;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment