Guest User

JS 4

a guest
Mar 5th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. "use strict";
  2. function fmap(a, gen) {
  3. //a = a|| function a() {};
  4. //gen = gen|| function gen() {};
  5.  
  6. return function(){
  7. / || отсюда взять /
  8. / \/ сюда затолкать/
  9. return a(gen( ));
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment