mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-05-23 06:15:53 +00:00
13 lines
228 B
CoffeeScript
13 lines
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 }"
|
||
|
|
|