Convert 100-point grading scores to ECTS grades
npm install ects-halyna-mazurThis package converts scores from the 100-point grading system to the ECTS grading scale.
To install the package, use npm:
``sh`
npm install ects-halyna-mazur
Import the package and use the ECTS class to convert scores:
`js
const ECTS = require('ects-halyna-mazur');
const myScore = new ECTS(85);
console.log(myScore.ectsFromScore()); // Output: "B"
``
| 100-Point Score | ECTS Grade |
|-----------------|------------|
| 90 - 100 | A |
| 82 - 89 | B |
| 74 - 81 | C |
| 65 - 73 | D |
| 60 - 64 | E |
| 0 - 59 | F |
This package is licensed under the MIT License.
Halyna Mazur