base extract.js actually complete
This commit is contained in:
parent
c97c5f6e1a
commit
8429be8b12
2 changed files with 3 additions and 5 deletions
|
@ -5,5 +5,3 @@ Parses schoolsoft schedules from 'right_student_schedule.jsp' file into readable
|
||||||
TEMPORARY REPO, WILL REMOVE
|
TEMPORARY REPO, WILL REMOVE
|
||||||
|
|
||||||
CURRENTLY REWRITING ENTIRELY, DONT LOOK AT IT :)
|
CURRENTLY REWRITING ENTIRELY, DONT LOOK AT IT :)
|
||||||
|
|
||||||
import('https://github.com/ZervoTheProtogen/schoolsoft-schema-parser/blob/main/grab.js')
|
|
||||||
|
|
|
@ -64,12 +64,12 @@ function extract() {
|
||||||
outEnd = scheduleItemTimesArray[1];
|
outEnd = scheduleItemTimesArray[1];
|
||||||
|
|
||||||
// do calculations for which day it is
|
// do calculations for which day it is
|
||||||
let endTrim = outEnd.replace(/:/g,'');
|
let startTrim = Number(outStart.replace(/:/g,''));
|
||||||
if (endTrim < lastEndtime) {
|
if (startTrim < lastEndtime) {
|
||||||
console.log(day);
|
console.log(day);
|
||||||
day += 1;
|
day += 1;
|
||||||
}
|
}
|
||||||
lastEndtime = endTrim;
|
lastEndtime = Number(outEnd.replace(/:/g,''));
|
||||||
switch(day) {
|
switch(day) {
|
||||||
case 1:
|
case 1:
|
||||||
outDay = 'mon';
|
outDay = 'mon';
|
||||||
|
|
Loading…
Add table
Reference in a new issue