qranswers 1.0.39 → 1.0.40

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 (2) hide show
  1. package/lib/Api.js +4 -1
  2. package/package.json +1 -1
package/lib/Api.js CHANGED
@@ -271,7 +271,10 @@ const Api = {
271
271
  qPadding += "\t";
272
272
  }
273
273
  for (let i=0; i<C_ANSWER_FIELDS.length; i++) {
274
- pasteBuffer += 'answer.' + C_ANSWER_FIELDS[i] + "\t";
274
+ if (i !== 0) {
275
+ pasteBuffer += "\t";
276
+ }
277
+ pasteBuffer += 'answer.' + C_ANSWER_FIELDS[i];
275
278
  }
276
279
  pasteBuffer += "\n";
277
280
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qranswers",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Helper module to access QR-Answers API",
5
5
  "main": "lib/qranswers.js",
6
6
  "scripts": {