Revert "Restructuring for new way of installing libreevent"

This reverts commit 688b0616cc.
This commit is contained in:
2024-08-26 11:21:52 +02:00
parent 688b0616cc
commit a68e42c4bb
223 changed files with 58 additions and 11 deletions

View File

@@ -1,2 +1,3 @@
# ignore node_modules folder for eslint
node_modules
node_modules
webapp

View File

Before

Width:  |  Height:  |  Size: 57 KiB

After

Width:  |  Height:  |  Size: 57 KiB

View File

Before

Width:  |  Height:  |  Size: 698 KiB

After

Width:  |  Height:  |  Size: 698 KiB

View File

Before

Width:  |  Height:  |  Size: 698 KiB

After

Width:  |  Height:  |  Size: 698 KiB

19
src/server/test.js Normal file
View File

@@ -0,0 +1,19 @@
const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
let result = '';
// https://stackoverflow.com/questions/36129721/convert-number-to-alphabet-letter
function printToLetter( number ) {
let charIndex = number % alphabet.length;
let quotient = number / alphabet.length;
if ( charIndex - 1 === -1 ) {
charIndex = alphabet.length;
quotient --;
}
result = alphabet.charAt( charIndex - 1 ) + result;
if ( quotient >= 1 ) {
printToLetter( parseInt( quotient ) );
}
}
printToLetter( 150036 );
console.log( result );

Some files were not shown because too many files have changed in this diff Show More