tweak: decompose into two different packages, part 1/n
14
.gitignore
vendored
|
@ -7,14 +7,14 @@ Notes.md
|
|||
.swp
|
||||
|
||||
# hacky upload script
|
||||
lib/pushToMongoManually.js
|
||||
packages/webpage/lib/pushToMongoManually.js
|
||||
|
||||
# convenience old folder
|
||||
pages/.old/*
|
||||
pages/.old
|
||||
packages/webpage/pages/.old/*
|
||||
packages/webpage/pages/.old
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
**/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
|
@ -22,11 +22,11 @@ pages/.old
|
|||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
**/.next/
|
||||
**/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
**/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
|
|
Before Width: | Height: | Size: 289 KiB After Width: | Height: | Size: 289 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
Before Width: | Height: | Size: 282 KiB After Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 266 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
|
@ -253,6 +253,9 @@ export default function ComparisonView({ listOfElementsForView }) {
|
|||
}
|
||||
|
||||
function mergeSort({ array, comparisons }) {
|
||||
console.log("mergesort");
|
||||
console.log({ array, comparisons });
|
||||
console.log("/console");
|
||||
if (array == "No comparison found; unable to proceed") {
|
||||
return "No comparison found; unable to proceed";
|
||||
}
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |