ects-yevhen-martynych
v1.0.1
Published
NPM package that converts scores from the 100-point grading system to the ECTS format.
Maintainers
Readme
ECTS Module
A simple Node.js module to convert 100-point grading system scores to ECTS format.
Installation
You can install this package using npm:
npm i ects-yevhen-martynychHow to use
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'