ects-kornii-chervonenko 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +13 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # ECTS Grade Converter
2
+
3
+ A simple npm package to convert scores from a 100-point grading system to the ECTS format.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install ects-kornii-chervonenko
9
+
10
+ const ECTS = require('ects-kornii-chervonenko');
11
+ const converter = new ECTS(91);
12
+ console.log(converter.ectsFromScore()); // Returns: "A"
13
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ects-kornii-chervonenko",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {