Advertisement
Serafim

Untitled

Oct 9th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Кофе
  2. apply: (context, options, values) ->
  3.   for name, val of values
  4.     if options isnt undefined && options[name]?
  5.       context[name] = options[name]
  6.     else
  7.       context[name] = val
  8.  
  9. Что ты делаешь?
  10. apply: (context, options, values) ->
  11.   for name, val of values
  12.     context[name] = if options isnt undefined && options[name]?
  13.       options[name]
  14.     else
  15.       val
  16.  
  17. Ахаха!
  18. apply: (context, options, values) ->
  19.   for name, val of values
  20.     context[name] = if options isnt undefined && options[name]? then options[name] else val
  21.  
  22. Прекрати!!!!
  23. apply: (context, options, values) ->
  24.   context[name] = if options isnt undefined && options[name]? then options[name] else val for name, val of values
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement