NPM package that converts scores from the 100-point grading system to the ECTS format.
npm install ects-yevhen-martynychbash
npm i ects-yevhen-martynych
`
How to use
`javascript
const ECTS = require("ects-yevhen-martynych");
// Initialize with a score (0-100)
const myScore = new ECTS(95);
// Get the ECTS grade
const grade = myScore.ectsFromScore();
console.log(grade); // Output: 'A'
``