mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
Restructuring for new way of installing libreevent
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
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 );
|
||||
@@ -1 +0,0 @@
|
||||
../webapp/
|
||||
3
src/server/.gitignore → src/web/.gitignore
vendored
3
src/server/.gitignore → src/web/.gitignore
vendored
@@ -1,3 +1,2 @@
|
||||
# ignore node_modules folder for eslint
|
||||
node_modules
|
||||
webapp
|
||||
node_modules
|
||||
|
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 698 KiB After Width: | Height: | Size: 698 KiB |
|
Before Width: | Height: | Size: 698 KiB After Width: | Height: | Size: 698 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user