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.
- package/lib/Api.js +4 -1
- 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
|
-
|
|
274
|
+
if (i !== 0) {
|
|
275
|
+
pasteBuffer += "\t";
|
|
276
|
+
}
|
|
277
|
+
pasteBuffer += 'answer.' + C_ANSWER_FIELDS[i];
|
|
275
278
|
}
|
|
276
279
|
pasteBuffer += "\n";
|
|
277
280
|
|