yach.nim.on
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -13,3 +13,3 @@ // log | ||
log('onBlacklist', blacklist); | ||
log('onBlacklist', JSON.stringify(blacklist)); | ||
@@ -28,3 +28,3 @@ let nimData = getData(); | ||
log('onMarkInBlacklist', obj); | ||
log('onMarkInBlacklist', JSON.stringify(obj)); | ||
@@ -31,0 +31,0 @@ if(obj.isAdd){ |
@@ -9,3 +9,3 @@ // log | ||
export function onError(error){ | ||
log('onError', error); | ||
log('onError', JSON.stringify(error)); | ||
} |
@@ -13,3 +13,3 @@ // log | ||
log('onFriends', friends); | ||
log('onFriends', JSON.stringify(friends)); | ||
@@ -28,3 +28,3 @@ let nimData = getData(); | ||
log('onSyncFriendAction', obj); | ||
log('onSyncFriendAction', JSON.stringify(obj)); | ||
@@ -31,0 +31,0 @@ switch (obj.type) { |
@@ -8,3 +8,3 @@ // log | ||
export function onLoginPortsChange(loginPorts){ | ||
log('onLoginPortsChange', loginPorts); | ||
log('onLoginPortsChange', JSON.stringify(loginPorts)); | ||
} |
@@ -11,3 +11,3 @@ // log | ||
export function onRobots(robots){ | ||
log('onRobots', robots); | ||
log('onRobots', JSON.stringify(robots)); | ||
@@ -14,0 +14,0 @@ let nimData = getData(); |
@@ -8,3 +8,3 @@ // log | ||
export function onWillReconnect(obj){ | ||
log('onWillReconnect', obj); | ||
log('onWillReconnect', JSON.stringify(obj)); | ||
} |
{ | ||
"name": "yach.nim.on", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "yach nim: on callback", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13725