@vue-skuilder/courseware 0.1.11-20 → 0.1.11-25
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.mjs
CHANGED
|
@@ -61698,7 +61698,8 @@ const _TypeLetterQuestion = class _TypeLetterQuestion extends Question {
|
|
|
61698
61698
|
if (t < 3e3) {
|
|
61699
61699
|
return 1;
|
|
61700
61700
|
} else {
|
|
61701
|
-
|
|
61701
|
+
const skill = 1 - (t - 3e3) / 7e3 * 0.75;
|
|
61702
|
+
return Math.max(0.25, skill);
|
|
61702
61703
|
}
|
|
61703
61704
|
}
|
|
61704
61705
|
return 0;
|