mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-04-21 15:14:50 +00:00
13 lines
No EOL
228 B
CoffeeScript
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 }"
|
|
|