@joliegg/moderation 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -116,7 +116,6 @@ class ModerationClient {
116
116
  },
117
117
  MinConfidence: minimumConfidence
118
118
  });
119
- console.log(ModerationLabels);
120
119
  if (Array.isArray(ModerationLabels)) {
121
120
  const moderation = ModerationLabels.map(l => ({
122
121
  category: l.Name ?? 'Unknown',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joliegg/moderation",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "A set of tools for chat moderation",
5
5
  "author": "Diana Islas Ocampo",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -142,8 +142,6 @@ class ModerationClient {
142
142
  MinConfidence: minimumConfidence
143
143
  });
144
144
 
145
- console.log(ModerationLabels);
146
-
147
145
  if (Array.isArray(ModerationLabels)) {
148
146
  const moderation = ModerationLabels.map(l => ({
149
147
  category: l.Name ?? 'Unknown',