We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c5ce70 commit 3ea8070Copy full SHA for 3ea8070
examples/nm/shared.js
@@ -46,7 +46,7 @@ async function removeMemberFromGroup(groupId, userId) {
46
],
47
});
48
49
- console.log(`${status}: ${statusText} - ${userId}`);
+ console.log(`${status}: ${statusText} Removed ${userId} from ${groupId}`);
50
} catch (e) {
51
console.log(RED_COLOR, 'Error', e);
52
}
@@ -130,7 +130,7 @@ async function getCache(fileName) {
130
fs.readFileSync(cachePath, {
131
encoding: 'utf-8',
132
flag: 'r',
133
- })
+ }),
134
);
135
136
0 commit comments