Guest User

Untitled

a guest
Jan 17th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ~/src/vendor/coffee-script ∴ bin/coffee -ce '(x) => (y) => (z) -> (a) => this'
  2. (function() {
  3. var _this = this;
  4.  
  5. (function(x) {
  6. return function(y) {
  7. return function(z) {
  8. var _this = this;
  9. return function(a) {
  10. return _this;
  11. };
  12. };
  13. };
  14. });
  15.  
  16. }).call(this);
Add Comment
Please, Sign In to add comment