Package for calculating recruitment points.
yarn add @warsawlo/points-calculator
or
npm i -S @warsawlo/points-calculator
We've migrated our docs to https://oss.warsawlo.pl.
There are some key differences between v1 and v2 of the package. If you don't migrate to the latest version, your code won't work properly.
Version 1.0.2 is deprecated. Use that version only if you want to support secondarySchool
mode.
import { PointsCalculator, configs } from '@warsawlo/points-calculator';
const { config2018_2019 } = configs;
const Calc = new PointsCalculator(config2018_2019);
Calc.setGrades({
polish: 6,
math: 4
});
Calc.setExamResult({
polish: .95
});
console.log(Calc.points);
Calc.watch(points => {});
setTimeout(() => Calc.setMerit(true), 1000);