7 lines
132 B
CoffeeScript
7 lines
132 B
CoffeeScript
# Core formatters
|
|
|
|
# Calls a function with arguments
|
|
Rivets.public.formatters['call'] = (value, args...) ->
|
|
value.call @, args...
|
|
|