webapi-eca/examples/action-invokers/system.coffee
2014-04-23 13:27:29 +02:00

13 lines
No EOL
228 B
CoffeeScript

# Helper constructs
#
exports.parseTextToJSON = ( text, infoEvent ) ->
try
pushEvent
event: infoEvent
payload: JSON.parse text
log "Text successfully parsed"
catch e
log "Error during JSON parsing of #{ text }"