Guest User

Untitled

a guest
Jan 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. cof~ $ coffee -ce '(x) => (y) => (z) -> (a) => this'
  2. (function() {
  3. var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
  4. __bind(function(x) {
  5. return __bind(function(y) {
  6. return function(z) {
  7. return __bind(function(a) {
  8. return this;
  9. }, this);
  10. };
  11. }, this);
  12. }, this);
  13. }).call(this);
Add Comment
Please, Sign In to add comment