UNPKG
urban-airship-cli
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
0.0.5
0.0.2
0.0.1
0.0.0
Command line interface for push notifications.
urban-airship-cli
/
commands
/
list
/
segments.js
9 lines
(6 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
segmentActionHandler
(
error, response, body
) {
if
(error)
return
console
.
log
(
'Error: '
, error);
var
responseJSON =
JSON
.
parse
(body);
console
.
log
(
'Segments:'
, responseJSON); }
module
.
exports
= segmentActionHandler;