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
|
||||
|
||||
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];
|
||||
|
||||
// do calculations for which day it is
|
||||
let endTrim = outEnd.replace(/:/g,'');
|
||||
if (endTrim < lastEndtime) {
|
||||
let startTrim = Number(outStart.replace(/:/g,''));
|
||||
if (startTrim < lastEndtime) {
|
||||
console.log(day);
|
||||
day += 1;
|
||||
}
|
||||
lastEndtime = endTrim;
|
||||
lastEndtime = Number(outEnd.replace(/:/g,''));
|
||||
switch(day) {
|
||||
case 1:
|
||||
outDay = 'mon';
|
||||
|
|
Loading…
Add table
Reference in a new issue