Guest User

Untitled

a guest
Nov 1st, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. my_func = (a, b, use_args = false) ->
  2.   args = []
  3.   args.push 'foo'
  4.   args.push a, b if use_args?
  5.   args.push 'bar'
  6.   other_func.apply null, args
Add Comment
Please, Sign In to add comment