@akanjs/common 0.0.57 → 0.0.59

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.
Files changed (3) hide show
  1. package/Logger.js +1 -1
  2. package/Logger.mjs +1 -1
  3. package/package.json +1 -1
package/Logger.js CHANGED
@@ -165,6 +165,6 @@ class Logger {
165
165
  if (typeof window === "undefined" && method !== "console" && global.process)
166
166
  global.process.stdout.write(msg);
167
167
  else
168
- console.log(msg);
168
+ console.log(msg.trim());
169
169
  }
170
170
  }
package/Logger.mjs CHANGED
@@ -133,7 +133,7 @@ class Logger {
133
133
  if (typeof window === "undefined" && method !== "console" && global.process)
134
134
  global.process.stdout.write(msg);
135
135
  else
136
- console.log(msg);
136
+ console.log(msg.trim());
137
137
  }
138
138
  }
139
139
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/common",
3
- "version": "0.0.57",
3
+ "version": "0.0.59",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"