| 1 | var classyGreeting = (firstName, lastName) => |
| 2 | "The name's " + lastName + ", " + firstName + " " + lastName; |
| 3 | var yellGreeting = R.compose(R.toUpper, classyGreeting); |
| 4 | yellGreeting("James", "Bond"); //=> "THE NAME'S BOND, JAMES BOND" |
nothing calls this directly
no test coverage detected