@quesmed/types 1.2.0 → 1.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "main": "index.js",
6
6
  "types": "dist/index.d.ts",
@@ -147,7 +147,7 @@ function correctMark(mark) {
147
147
  data.incorrect = true;
148
148
  }
149
149
  else if (attemptA.every((x, i) => x === answerA[i]) &&
150
- attemptB.every((_, i) => answerB[i])) {
150
+ attemptB.every((x, i) => x === answerB[i])) {
151
151
  data.correct = true;
152
152
  }
153
153
  else {