Created
July 11, 2019 15:32
-
-
Save pnavarrc/e95aefc1b4adb6e0b9ffba264e2b4a3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const isRamdaMerge = node => | |
t.isMemberExpression(node) && | |
t.isIdentifier(node.object, { name: "R" }) && | |
t.isIdentifier(node.property, { name: "merge" }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment