webapi-eca/examples/action-invokers/system.coffee

13 lines
228 B
CoffeeScript
Raw Normal View History

2014-04-23 11:27:29 +00:00
# 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 }"