diff --git a/00-asserting/2-isolate/1-variables/exercises/1-let.js b/00-asserting/2-isolate/1-variables/exercises/1-let.js
index 9122040..5f6e565 100644
--- a/00-asserting/2-isolate/1-variables/exercises/1-let.js
+++ b/00-asserting/2-isolate/1-variables/exercises/1-let.js
@@ -9,19 +9,19 @@ console.log('-- begin --');
// and don't just write the correct answer directly!
// you should use firstFiveLetters to fill in one blank for each step
-_;
+let firstFiveLetters = 'c';
console.log(firstFiveLetters); // should log "c"
-firstFiveLetters = _ + _;
+firstFiveLetters = 'b' + firstFiveLetters;
console.log(firstFiveLetters); // should log "bc"
-firstFiveLetters = _ + _;
+firstFiveLetters += 'd';
console.log(firstFiveLetters); // should log "bcd"
-firstFiveLetters = _ + _;
+firstFiveLetters = 'a' + firstFiveLetters;
console.log(firstFiveLetters); // should log "abcd"
-firstFiveLetters = _ + _;
+firstFiveLetters += 'e';
console.log(firstFiveLetters); // should log "abcde"
console.log('-- end --');
diff --git a/00-asserting/2-isolate/1-variables/exercises/2-let.js b/00-asserting/2-isolate/1-variables/exercises/2-let.js
index b5f8122..838f4ea 100644
--- a/00-asserting/2-isolate/1-variables/exercises/2-let.js
+++ b/00-asserting/2-isolate/1-variables/exercises/2-let.js
@@ -13,13 +13,13 @@ let fruit = 'banana';
let desert = 'cake';
let topping = 'frosting';
-_;
+desert = 'chocolate ' + desert;
console.log(desert); // should log 'chocolate cake'
-_;
+desert += ' ' + 'with' + ' ' + topping;
console.log(desert); // should log 'chocolate cake with frosting'
-_;
+desert += ' and ' + fruit
console.log(desert); // should log 'chocolate cake with frosting and banana'
console.log('-- end --');
diff --git a/00-asserting/2-isolate/1-variables/exercises/3-let-or-const.js b/00-asserting/2-isolate/1-variables/exercises/3-let-or-const.js
index 5eed3ec..cc56084 100644
--- a/00-asserting/2-isolate/1-variables/exercises/3-let-or-const.js
+++ b/00-asserting/2-isolate/1-variables/exercises/3-let-or-const.js
@@ -20,34 +20,34 @@ console.log('-- begin --');
*/
// declare a variable named aTree, don't assign a value!
-_;
+let aTree;
console.log(aTree);
// assign the value "birch" to the variable aTree
-_;
+aTree = 'brich';
console.log(aTree);
// declare a variable named turtle and assign it the name "myrtle"
-_;
+let turtle = 'myrtle';
console.log(turtle);
// reassign aTree to "aspen"
-_;
+aTree = 'aspen';
console.log(aTree);
// declare a variable named aColor with the value "blue"
-_;
+let aColor = 'blue';
console.log(aColor);
// log the value of turtle
-_;
+console.log(turtle);
// reassign aTree to "oak"
-_;
+aTree = 'oak';
console.log(aTree);
// reassign aColor to "orange"
-_;
+aColor = 'orange';
console.log(aColor);
console.log('-- end --');
diff --git a/00-asserting/2-isolate/1-variables/exercises/4-let-or-const.js b/00-asserting/2-isolate/1-variables/exercises/4-let-or-const.js
index 89f24b0..3fbfc4f 100644
--- a/00-asserting/2-isolate/1-variables/exercises/4-let-or-const.js
+++ b/00-asserting/2-isolate/1-variables/exercises/4-let-or-const.js
@@ -19,25 +19,25 @@ console.log('-- begin --');
*/
-_;
+let x = 'a';
console.log(x); // should print 'a'
-_;
+let y = 'b';
console.log(y); // should print 'b'
-
+x = 'a'
console.log(x); // should print 'a'
-_;
+let z;
console.log(z); // should print undefined
-
+y = 'b'
console.log(y); // should print 'b'
-_;
+z = 'c'
console.log(z); // should print 'c'
-_;
+y += 'd'
console.log(y); // should print 'bd'
-
+x = 'a'
console.log(x); // should print 'a'
console.log('-- end --');
diff --git a/00-asserting/2-isolate/1-variables/exercises/5-let-or-const.js b/00-asserting/2-isolate/1-variables/exercises/5-let-or-const.js
index 5e45a33..ba5f993 100644
--- a/00-asserting/2-isolate/1-variables/exercises/5-let-or-const.js
+++ b/00-asserting/2-isolate/1-variables/exercises/5-let-or-const.js
@@ -19,26 +19,26 @@ console.log('-- begin --');
*/
-_;
+let furniture = 'chair'
console.log(furniture); // should log 'chair'
-_;
+let building = 'house'
console.log(building); // should log 'house'
furniture = 'table';
-console.log(_); // should log 'table'
+console.log(furniture); // should log 'table'
-_;
+let food;
console.log(food); // should log undefined
-_;
+food = 'apple';
console.log(food); // should log 'apple'
-console.log(_); // should log 'house'
+console.log(building); // should log 'house'
-console.log(_); // should log 'table'
+console.log(furniture); // should log 'table'
-_;
-console.log(_); // should log 'apple, pear'
+food += ' pear ';
+console.log(food); // should log 'apple, pear'
console.log('-- end --');
diff --git a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/1-let.js b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/1-let.js
index f520fcd..1507967 100644
--- a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/1-let.js
+++ b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/1-let.js
@@ -4,19 +4,19 @@
console.log('-- begin --');
-_;
+let letters = 'c';
console.assert(letters === 'c', 'Test 1');
-letters = _ + _;
+letters = 'b' + letters;
console.assert(letters === 'bc', 'Test 2');
letters = letters + 'd';
-console.assert(letters === _, 'Test 3');
+console.assert(letters === 'bcd', 'Test 3');
letters = 'a' + letters;
-console.assert(letters === _, 'Test 4');
+console.assert(letters === 'abcd', 'Test 4');
-letters = _ + _;
+letters += 'e';
console.assert(letters === 'abcde', 'Test 5');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/2-let.js b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/2-let.js
index 5907d24..b1164f5 100644
--- a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/2-let.js
+++ b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/2-let.js
@@ -8,13 +8,13 @@ let fruit = 'banana';
let desert = 'cake';
let topping = 'frosting';
-_;
+desert ='chocolate ' + desert;
console.assert(desert === 'chocolate cake', 'Test 1');
desert = desert + ' with ' + topping;
-console.assert(desert === _, 'Test 2');
+console.assert(desert === 'chocolate cake with frosting', 'Test 2');
-_;
-console.assert(desert === ,'Test 3');
+desert += ' and banana';
+console.assert(desert === 'chocolate cake with frosting and banana','Test 3');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/3-let-or-const.js b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/3-let-or-const.js
index ff3995b..d98dd57 100644
--- a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/3-let-or-const.js
+++ b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/3-let-or-const.js
@@ -4,7 +4,7 @@
console.log('-- begin --');
-/* fill in the blanks to pass the assertions
+/* fill in the bladesertnks to pass the assertions
pay close attention to how each variable is used!
- is a variable assigned a value when it is declared?
@@ -19,27 +19,27 @@ console.log('-- begin --');
*/
-__;
+let aTree = '';
console.assert(aTree === '', 'Test 1');
aTree = 'birch';
-console.assert(__ === __, 'Test 2');
+console.assert(aTree === 'birch', 'Test 2');
-__;
+let turtle = 'myrtle';
console.assert(turtle === 'myrtle', 'Test 3');
-__;
+aTree = 'aspen';
console.assert(aTree === 'aspen', 'Test 4');
-__;
+let aColor = 'blue';
console.assert(aColor === 'blue', 'Test 5');
-console.assert(turtle === __, 'Test 6');
+console.assert(turtle ==='myrtle', 'Test 6');
-__ = 'oak';
-console.assert(aTree === __, 'Test 7');
+aTree = 'oak';
+console.assert(aTree === 'oak', 'Test 7');
-aColor = __;
-console.assert(__ === 'orange', 'Test 8');
+aColor = 'orange';
+console.assert(aColor === 'orange', 'Test 8');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/4-let-or-const.js b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/4-let-or-const.js
index cfa8ced..5c1d21d 100644
--- a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/4-let-or-const.js
+++ b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/4-let-or-const.js
@@ -19,25 +19,25 @@ console.log('-- begin --');
*/
-__;
+let x = 'a';
console.assert(x === 'a', 'Test 1');
-__;
+let y = 'b';
console.assert(y === 'b', 'Test 2');
-
+x = 'a';
console.assert(x === 'a', 'Test 3');
-__;
+let z = '';
console.assert(z === '', 'Test 4');
-
+y = 'b';
console.assert(y === 'b', 'Test 5');
-__;
+z = 'c';
console.assert(z === 'c', 'Test 6');
-__;
+y += 'd';
console.assert(y === 'bd', 'Test 7');
-
+x = 'a'
console.assert(x === 'a', 'Test 8');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/5-let-or-const.js b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/5-let-or-const.js
index e3633b7..15645f8 100644
--- a/00-asserting/2-isolate/2-comparing-and-asserting/exercises/5-let-or-const.js
+++ b/00-asserting/2-isolate/2-comparing-and-asserting/exercises/5-let-or-const.js
@@ -19,26 +19,26 @@ console.log('-- begin --');
*/
-__;
+let furniture = 'chair';
console.assert(furniture === 'chair', 'Test 1');
-__;
+let building = 'house';
console.assert(building === 'house', 'Test 2');
furniture = 'table';
-console.assert(__ === __, 'Test 3');
+console.assert(furniture === 'table', 'Test 3');
-__;
+let food = '';
console.assert(food === '', 'Test 4');
-__ = 'apple';
-console.assert(food === __, 'Test 5');
+food = 'apple';
+console.assert(food === 'apple', 'Test 5');
-console.assert(__ === 'house', 'Test 6');
+console.assert(building === 'house', 'Test 6');
-console.assert(__ === 'table', 'Test 7');
+console.assert(furniture === 'table', 'Test 7');
-food = __;
-console.assert(__ === 'pear', 'Test 8');
+food = 'pear' ;
+console.assert(food === 'pear', 'Test 8');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/1-double-swap.js b/00-asserting/2-isolate/3-value-swaps/exercises/1-double-swap.js
index 1175ebd..7a3087c 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/1-double-swap.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/1-double-swap.js
@@ -11,6 +11,17 @@ let b = 'x';
let temp;
// --- swap values ---
+temp = a;
+console.assert(temp === 'y', 'Step 1.1');
+console.assert(a === 'y', 'Step 1.2');
+
+a = b;
+console.assert(a === 'x', 'Step 2.1');
+console.assert(b === 'x', 'Step 2.2');
+
+b = temp;
+console.assert(b === 'y', 'Step 3.1');
+console.assert(temp === 'y', 'Step 3.2');
// --- test final values ---
@@ -20,7 +31,7 @@ console.assert(test1, 'Test 1');
const test2 = b === 'y';
console.assert(test2, 'Test 2');
-const test3 = temp === _;
+const test3 = temp === 'y';
console.assert(test3, 'Test 3');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/2-triple-swap.js b/00-asserting/2-isolate/3-value-swaps/exercises/2-triple-swap.js
index dbba95e..097a13b 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/2-triple-swap.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/2-triple-swap.js
@@ -14,24 +14,24 @@ let temp;
// --- swap values ---
temp = a;
-console.assert(temp === _, 'Step 1.1');
-console.assert(a === _, 'Step 1.2');
+console.assert(temp === 'y', 'Step 1.1');
+console.assert(a === 'y', 'Step 1.2');
a = c;
-console.assert(a === _, 'Step 2.1');
-console.assert(c === _, 'Step 2.2');
+console.assert(a === 'x', 'Step 2.1');
+console.assert(c === 'x', 'Step 2.2');
c = temp;
-console.assert(c === _, 'Step 3.1');
-console.assert(temp === _, 'Step 3.2');
+console.assert(c === 'y', 'Step 3.1');
+console.assert(temp === 'y', 'Step 3.2');
temp = c;
-console.assert(temp === _, 'Step 4.1');
-console.assert(c === _, 'Step 4.2');
+console.assert(temp === 'y', 'Step 4.1');
+console.assert(c === 'y', 'Step 4.2');
c = b;
-console.assert(c === _, 'Step 5.1');
-console.assert(b === _, 'Step 5.2');
+console.assert(c === 'z', 'Step 5.1');
+console.assert(b === 'z', 'Step 5.2');
b = temp;
-console.assert(b === _, 'Step 6.1');
-console.assert(temp === _, 'Step 6.2');
+console.assert(b === 'y', 'Step 6.1');
+console.assert(temp === 'y', 'Step 6.2');
// --- test final values ---
@@ -41,6 +41,6 @@ console.assert(b === 'y', 'Test 2');
console.assert(c === 'z', 'Test 3');
-console.assert(temp === _, 'Test 4');
+console.assert(temp === 'y', 'Test 4');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/3-triple-swap.js b/00-asserting/2-isolate/3-value-swaps/exercises/3-triple-swap.js
index 3dbb477..2c8c810 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/3-triple-swap.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/3-triple-swap.js
@@ -12,6 +12,30 @@ let c = 'y';
let temp;
// --- swap values ---
+temp = a;
+console.assert(temp = 'z', 'step 1.1');
+console.assert(a = 'z', 'step 1.2');
+
+a = b;
+console.assert(a = 'x', 'step 2.1');
+console.assert(b = 'x', 'step 2.2');
+
+b = temp;
+console.assert(b = 'z', 'step 3.1');
+console.assert(temp = 'z', 'step 3.2');
+
+temp = b;
+console.assert(temp = 'z', 'step 4.1');
+console.assert(b = 'z', 'step 4.2');
+
+b = c;
+console.assert(b = 'y', 'step 5.1');
+console.assert(c = 'y', 'step 5.2');
+
+c = temp;
+console.assert(c = 'z', 'step 6.2');
+console.assert(temp = 'z', 'step 6.2');
+
// --- test final values ---
@@ -24,7 +48,7 @@ console.assert(test2, 'Test 2');
const test3 = c === 'z';
console.assert(test3, 'Test 3');
-const test4 = temp === _;
+const test4 = temp === 'z';
console.assert(test4, 'Test 4');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/4-quadruple-swap.js b/00-asserting/2-isolate/3-value-swaps/exercises/4-quadruple-swap.js
index ad786c6..2b0c5b8 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/4-quadruple-swap.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/4-quadruple-swap.js
@@ -13,6 +13,26 @@ let d = 'x';
let temp;
// --- swap values ---
+temp = a;
+console.assert(temp = 'y', 'step 1.1');
+console.assert(a = 'y', 'step 1.2');
+
+a = c;
+console.assert(a = 'w', 'step 2.1');
+console.assert(c = 'w', 'step 2.2');
+
+b = d;
+console.assert(b = 'x', 'step 3.1');
+console.assert(d = 'x', 'step 3.2');
+
+c = temp;
+console.assert(c = 'y', 'step 4.1');
+console.assert(temp = 'y', 'step 4.2');
+
+d = temp
+console.assert(d = 'z', 'step 5.1');
+console.assert(temp = 'z', 'step 5.2');
+
// --- test final values ---
@@ -28,7 +48,7 @@ console.assert(test3, 'Test 3');
const test4 = d === 'z';
console.assert(test4, 'Test 4');
-const test5 = temp === _;
+const test5 = temp === 'z';
console.assert(test5, 'Test 5');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/5-quadruple-swap.js b/00-asserting/2-isolate/3-value-swaps/exercises/5-quadruple-swap.js
index 04aaf3e..53a79d0 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/5-quadruple-swap.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/5-quadruple-swap.js
@@ -14,6 +14,26 @@ let temp;
// --- swap values ---
+temp = a;
+console.assert(temp = 'y', 'step 1.1');
+console.assert(a = 'y', 'step 1.2');
+
+a = c;
+console.assert(a = 'w', 'step 2.1');
+console.assert(c = 'w', 'step 2.2');
+
+b = d;
+console.assert(b = 'x', 'step 3.1');
+console.assert(d = 'x', 'step 3.2');
+
+c = temp;
+console.assert(c = 'y', 'step 4.1');
+console.assert(temp = 'y', 'step 4.2');
+
+d = temp
+console.assert(d = 'z', 'step 5.1');
+console.assert(temp = 'z', 'step 5.2');
+
// --- test final values ---
console.assert(a === 'w', 'Test 1');
@@ -24,6 +44,6 @@ console.assert(c === 'y', 'Test 3');
console.assert(d === 'z', 'Test 4');
-console.assert(temp === _, 'Test 5');
+console.assert(temp === 'z', 'Test 5');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/6-let-and-const.js b/00-asserting/2-isolate/3-value-swaps/exercises/6-let-and-const.js
index cf7d503..e9ad8c9 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/6-let-and-const.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/6-let-and-const.js
@@ -14,27 +14,27 @@ let temp;
// --- swap values ---
temp = a;
-console.assert(temp === _, 'Step 1.1');
-console.assert(a === _, 'Step 1.2');
+console.assert(temp === 'y', 'Step 1.1');
+console.assert(a === 'y', 'Step 1.2');
a = b;
-console.assert(a === _, 'Step 2.1');
-console.assert(b === _, 'Step 2.2');
+console.assert(a === 'z', 'Step 2.1');
+console.assert(b === 'z', 'Step 2.2');
const d = a;
-console.assert(d === _, 'Step 3.1');
-console.assert(a === _, 'Step 3.2');
+console.assert(d === 'z', 'Step 3.1');
+console.assert(a === 'z', 'Step 3.2');
// --- test final values ---
-console.assert(a === _, 'Test 1');
+console.assert(a === 'z', 'Test 1');
-console.assert(b === _, 'Test 2');
+console.assert(b === 'z', 'Test 2');
-console.assert(c === _, 'Test 3');
+console.assert(c === 'x', 'Test 3');
-console.assert(d === _, 'Test 4');
+console.assert(d === 'z', 'Test 4');
-console.assert(temp === _, 'Test 5');
+console.assert(temp === 'y', 'Test 5');
console.log('-- end --');
diff --git a/00-asserting/2-isolate/3-value-swaps/exercises/7-let-and-const.js b/00-asserting/2-isolate/3-value-swaps/exercises/7-let-and-const.js
index 4b8f929..088d764 100644
--- a/00-asserting/2-isolate/3-value-swaps/exercises/7-let-and-const.js
+++ b/00-asserting/2-isolate/3-value-swaps/exercises/7-let-and-const.js
@@ -15,6 +15,14 @@ const c = temp;
// --- swap values ---
+a = b;
+console.assert(a === 'x', 'Step 1.1');
+console.assert(b === 'x', 'Step 1.2');
+
+b = temp;
+console.assert(b === 'y', 'Step 2.1');
+console.assert(temp === 'y', 'Step 2.2');
+
// --- test final values ---
const test1 = a === 'x';
@@ -23,10 +31,10 @@ console.assert(test1, 'Test 1');
const test2 = b === 'y';
console.assert(test2, 'Test 2');
-const test3 = c === _;
+const test3 = c === 'y';
console.assert(test3, 'Test 3');
-const test4 = temp === _;
+const test4 = temp === 'y';
console.assert(test4, 'Test 4');
console.log('-- end --');
diff --git a/01-primitives-and-operators/1-primitive-types/exercises/fill-in-the-type.js b/01-primitives-and-operators/1-primitive-types/exercises/fill-in-the-type.js
index ed3621f..e742532 100644
--- a/01-primitives-and-operators/1-primitive-types/exercises/fill-in-the-type.js
+++ b/01-primitives-and-operators/1-primitive-types/exercises/fill-in-the-type.js
@@ -7,20 +7,20 @@ console.log('-- begin --');
// replace the _'s to complete the challenges
// you know it's right when your log matches the one below it
-console.log(typeof 'undefined' === __, 'Test 1');
+console.log(typeof 'undefined' === 'string', 'Test 1');
-console.log(typeof Infinity === __, 'Test 2');
+console.log(typeof Infinity === 'number', 'Test 2');
-console.log(typeof 4 === __, 'Test 3');
+console.log(typeof 4 === 'number', 'Test 3');
-console.log(typeof '4' === __, 'Test 4');
+console.log(typeof '4' === 'string', 'Test 4');
-console.log(typeof false === __, 'Test 5');
+console.log(typeof false === 'boolean', 'Test 5');
-console.log(typeof undefined === __, 'Test 6');
+console.log(typeof undefined === 'undefined', 'Test 6');
-console.log(typeof NaN === __, 'Test 7');
+console.log(typeof NaN === 'number', 'Test 7');
-console.log(typeof null === __, 'Test 8');
+console.log(typeof null === 'object', 'Test 8');
console.log('-- end --');
diff --git a/01-primitives-and-operators/2-explicit-coercion/exercises/to-boolean.js b/01-primitives-and-operators/2-explicit-coercion/exercises/to-boolean.js
index 415d037..0213a88 100644
--- a/01-primitives-and-operators/2-explicit-coercion/exercises/to-boolean.js
+++ b/01-primitives-and-operators/2-explicit-coercion/exercises/to-boolean.js
@@ -4,22 +4,22 @@
console.log('-- begin --');
-console.assert(Boolean(undefined) === __, 'Test 1');
+console.assert(Boolean(undefined) === false, 'Test 1');
-console.assert(Boolean(null) === __, 'Test 2');
+console.assert(Boolean(null) === false, 'Test 2');
-console.assert(Boolean(-1) === __, 'Test 3');
+console.assert(Boolean(-1) === true, 'Test 3');
-console.assert(Boolean(0) === __, 'Test 4');
+console.assert(Boolean(0) === false, 'Test 4');
-console.assert(Boolean(1) === __, 'Test 5');
+console.assert(Boolean(1) === true, 'Test 5');
-console.assert(Boolean('-1') === __, 'Test 6');
+console.assert(Boolean('-1') === true, 'Test 6');
-console.assert(Boolean('0') === __, 'Test 7');
+console.assert(Boolean('0') === true, 'Test 7');
-console.assert(Boolean('') === __, 'Test 8');
+console.assert(Boolean('') === false, 'Test 8');
-console.assert(Boolean(NaN) === __, 'Test 9');
+console.assert(Boolean(NaN) === false, 'Test 9');
console.log('-- end --');
diff --git a/01-primitives-and-operators/2-explicit-coercion/exercises/to-number.js b/01-primitives-and-operators/2-explicit-coercion/exercises/to-number.js
index 0047c7f..98e052e 100644
--- a/01-primitives-and-operators/2-explicit-coercion/exercises/to-number.js
+++ b/01-primitives-and-operators/2-explicit-coercion/exercises/to-number.js
@@ -13,30 +13,30 @@
console.log('-- begin --');
const _1_number = Number(undefined);
-console.assert(Object.is(_1_number, __), 'Test 1');
+console.assert(Object.is(_1_number, NaN), 'Test 1');
const _2_number = Number(null);
-console.assert(Object.is(_2_number, __), 'Test 2');
+console.assert(Object.is(_2_number, 0), 'Test 2');
const _3_number = Number('four');
-console.assert(Object.is(_3_number, __), 'Test 3');
+console.assert(Object.is(_3_number, NaN), 'Test 3');
const _4_number = Number(true);
-console.assert(Object.is(_4_number, __), 'Test 4');
+console.assert(Object.is(_4_number, 1), 'Test 4');
const _5_number = Number(false);
-console.assert(Object.is(_5_number, __), 'Test 5');
+console.assert(Object.is(_5_number, 0), 'Test 5');
const _6_number = Number('-1');
-console.assert(Object.is(_6_number, __), 'Test 6');
+console.assert(Object.is(_6_number, -1), 'Test 6');
const _7_number = Number('0');
-console.assert(Object.is(_7_number, __), 'Test 7');
+console.assert(Object.is(_7_number, 0), 'Test 7');
const _8_number = Number('');
-console.assert(Object.is(_8_number, __), 'Test 8');
+console.assert(Object.is(_8_number, 0), 'Test 8');
const _9_number = Number(NaN);
-console.assert(Object.is(_9_number, __), 'Test 9');
+console.assert(Object.is(_9_number, NaN), 'Test 9');
console.log('-- end --');
diff --git a/01-primitives-and-operators/2-explicit-coercion/exercises/to-string.js b/01-primitives-and-operators/2-explicit-coercion/exercises/to-string.js
index 24950c1..3540928 100644
--- a/01-primitives-and-operators/2-explicit-coercion/exercises/to-string.js
+++ b/01-primitives-and-operators/2-explicit-coercion/exercises/to-string.js
@@ -4,22 +4,22 @@
console.log('-- begin --');
-console.assert(String(undefined) === __, 'Test 1');
+console.assert(String(undefined) === 'undefined', 'Test 1');
-console.assert(String(null) === __, 'Test 2');
+console.assert(String(null) === 'null', 'Test 2');
-console.assert(String(100) === __, 'Test 3');
+console.assert(String(100) === '100', 'Test 3');
-console.assert(String(true) === __, 'Test 4');
+console.assert(String(true) === 'true', 'Test 4');
-console.assert(String(false) === __, 'Test 5');
+console.assert(String(false) === 'false', 'Test 5');
-console.assert(String(-1) === __, 'Test 6');
+console.assert(String(-1) === '-1', 'Test 6');
-console.assert(String(0) === __, 'Test 7');
+console.assert(String(0) === '0', 'Test 7');
-console.assert(String(Infinity) === __, 'Test 8');
+console.assert(String(Infinity) === 'Infinity', 'Test 8');
-console.assert(String(NaN) === __, 'Test 9');
+console.assert(String(NaN) === 'NaN', 'Test 9');
console.log('-- end --');
diff --git a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/and.js b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/and.js
index 81ef099..5d8a861 100644
--- a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/and.js
+++ b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/and.js
@@ -7,40 +7,40 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there is sometimes more than one correct answer
-const _1_expect = _;
+const _1_expect = 0;
const _1_actual = 0 && 0;
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _;
+const _2_expect = 0;
const _2_actual = 1 && 0;
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = _;
+const _3_expect = 0;
const _3_actual = 0 && 1;
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _;
+const _4_expect = 1;
const _4_actual = 1 && 1;
console.assert(_4_actual === _4_expect, 'Test 4');
const _5_expect = '';
-const _5_actual = _ && 'asdf';
+const _5_actual = '' && 'asdf';
console.assert(_5_actual === _5_expect, 'Test 5');
const _6_expect = '';
-const _6_actual = 'asdf' && _;
+const _6_actual = 'asdf' && '';
console.assert(_6_actual === _6_expect, 'Test 6');
const _7_expect = false;
-const _7_actual = _ && false;
+const _7_actual = false && false;
console.assert(_7_actual === _7_expect, 'Test 7');
const _8_expect = NaN;
-const _8_actual = _ && undefined;
+const _8_actual = NaN && undefined;
console.assert(Object.is(_8_actual, _8_expect), 'Test 8');
const _9_expect = 'asdf';
-const _9_actual = Infinity && _;
+const _9_actual = Infinity && 'asdf';
console.assert(_9_actual === _9_expect, 'Test 9');
console.log('-- end --');
diff --git a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/not.js b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/not.js
index e5a8d54..228b635 100644
--- a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/not.js
+++ b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/not.js
@@ -7,39 +7,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there will only be one correct answer
-const _1_expect = _;
+const _1_expect = true;
const _1_actual = !0;
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _;
+const _2_expect = true;
const _2_actual = !false;
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = _;
+const _3_expect = true;
const _3_actual = !undefined;
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _;
+const _4_expect = true;
const _4_actual = !null;
console.assert(_4_actual === _4_expect, 'Test 4');
-const _5_expect = _;
+const _5_expect = true;
const _5_actual = !'';
console.assert(_5_actual === _5_expect, 'Test 5');
-const _6_expect = _;
+const _6_expect = true;
const _6_actual = !NaN;
console.assert(_6_actual === _6_expect, 'Test 6');
-const _7_expect = _;
+const _7_expect = false;
const _7_actual = !'fdsa';
console.assert(_7_actual === _7_expect, 'Test 7');
-const _8_expect = _;
+const _8_expect = false;
const _8_actual = !'true';
console.assert(_8_actual === _8_expect, 'Test 8');
-const _9_expect = _;
+const _9_expect = false;
const _9_actual = !1;
console.assert(_9_actual === _9_expect, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/or.js b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/or.js
index 96d163b..11baa1c 100644
--- a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/or.js
+++ b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/or.js
@@ -7,39 +7,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there may be more than one correct answer
-const _1_expect = _;
+const _1_expect = 0;
const _1_actual = 0 || 0;
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _;
+const _2_expect =1;
const _2_actual = 1 || 0;
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = _;
+const _3_expect = 1;
const _3_actual = 0 || 1;
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _;
+const _4_expect = 1;
const _4_actual = 1 || 1;
console.assert(_4_actual === _4_expect, 'Test 4');
const _5_expect = 'asdf';
-const _5_actual = '' || _;
+const _5_actual = '' || 'asdf';
console.assert(_5_actual === _5_expect, 'Test 5');
-const _6_expect = _;
+const _6_expect = 'asdf';
const _6_actual = 'asdf' || '';
console.assert(_6_actual === _6_expect, 'Test 6');
const _7_expect = true;
-const _7_actual = _ || false;
+const _7_actual = true || false;
console.assert(_7_actual === _7_expect, 'Test 7');
-const _8_expect = _;
+const _8_expect = undefined;
const _8_actual = NaN || undefined;
console.assert(_8_actual === _8_expect, 'Test 8');
-const _9_expect = _;
+const _9_expect = Infinity;
const _9_actual = Infinity || 'asdf';
console.assert(_9_actual === _9_expect, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/ternary.js b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/ternary.js
index 9715af7..b4cb10d 100644
--- a/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/ternary.js
+++ b/01-primitives-and-operators/3-common-operators/1-truthiness-operators/exercises/ternary.js
@@ -7,39 +7,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there will only be one correct answer
-const _1_expect = _;
+const _1_expect = 'A';
const _1_actual = true ? 'A' : 'B';
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _;
+const _2_expect = 'A';
const _2_actual = 1 ? 'A' : 'B';
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = _;
+const _3_expect = 'B';
const _3_actual = null ? 'A' : 'B';
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _;
+const _4_expect = 'A';
const _4_actual = -100 ? 'A' : 'B';
console.assert(_4_actual === _4_expect, 'Test 4');
-const _5_expect = _;
+const _5_expect = 'A';
const _5_actual = true ? 'A' : 'B';
console.assert(_5_actual === _5_expect, 'Test 5');
-const _6_expect = _;
+const _6_expect = 'B';
const _6_actual = 'false' ? 'A' : 'B';
console.assert(_6_actual === _6_expect, 'Test 6');
-const _7_expect = _;
+const _7_expect = 'B';
const _7_actual = '-0.0' ? 'A' : 'B';
console.assert(_7_actual === _7_expect, 'Test 7');
-const _8_expect = _;
+const _8_expect = 'A';
const _8_actual = -0.0 ? 'A' : 'B';
console.assert(_8_actual === _8_expect, 'Test 8');
-const _9_expect = _;
+const _9_expect = 'B';
const _9_actual = '' ? 'A' : 'B';
console.assert(_9_actual === _9_expect, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than-or-equal-to.js b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than-or-equal-to.js
index 31717db..de55d2e 100644
--- a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than-or-equal-to.js
+++ b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than-or-equal-to.js
@@ -11,39 +11,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there may be more than one correct answer!
-const _1_expect = _; // 1 >= 1
+const _1_expect = true; // 1 >= 1
const _1_actual = '1' >= 1;
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _; // 1 >= 0
+const _2_expect = true; // 1 >= 0
const _2_actual = true >= null;
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = false; // __
-const _3_actual = _ >= false;
+const _3_expect = true; // __
+const _3_actual = true >= false;
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _; // __
+const _4_expect = true; // __
const _4_actual = '0.0' >= false;
console.assert(_4_actual === _4_expect, 'Test 4');
-const _5_expect = _; // __
+const _5_expect = false; // __
const _5_actual = false >= true;
console.assert(_5_actual === _5_expect, 'Test 5');
-const _6_expect = _; // __
+const _6_expect = true; // __
const _6_actual = '13' >= true;
console.assert(_6_actual === _6_expect, 'Test 6');
-const _7_expect = _; // __
+const _7_expect = false; // __
const _7_actual = 'aa' >= 'ab';
console.assert(_7_actual === _7_expect, 'Test 7');
-const _8_expect = _; // __
+const _8_expect = true; // __
const _8_actual = 'aa' >= 'aa';
console.assert(_8_actual === _8_expect, 'Test 8');
-const _9_expect = _; // __
+const _9_expect = true; // __
const _9_actual = 0 >= '';
console.assert(_9_actual === _9_expect, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than.js b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than.js
index 520bac4..43c75b1 100644
--- a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than.js
+++ b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/greater-than.js
@@ -11,39 +11,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there may be more than one correct answer!
-const _1_expect = _; // __
+const _1_expect = false; // __
const _1_native = '1' > 1;
console.assert(_1_expect === _1_native, 'Test 1');
-const _2_expect = _; // __
+const _2_expect = false; // __
const _2_native = undefined > null;
console.assert(_2_expect === _2_native, 'Test 2');
const _3_expect = false; // __
-const _3_native = _ > null;
+const _3_native = undefined > null;
console.assert(_3_expect === _3_native, 'Test 3');
-const _4_expect = _; // __
+const _4_expect = true; // __
const _4_native = true > false;
console.assert(_4_expect === _4_native, 'Test 4');
-const _5_expect = _; // __
+const _5_expect = false; // __
const _5_native = false > true;
console.assert(_5_expect === _5_native, 'Test 5');
-const _6_expect = _; // __
+const _6_expect = true; // __
const _6_native = '13' > true;
console.assert(_6_expect === _6_native, 'Test 6');
-const _7_expect = _; // __
+const _7_expect = false; // __
const _7_native = 'aa' > 'ab';
console.assert(_7_expect === _7_native, 'Test 7');
-const _8_expect = _; // __
+const _8_expect = true; // __
const _8_native = 'bc' > 'ab';
console.assert(_8_expect === _8_native, 'Test 8');
-const _9_expect = _; // __
+const _9_expect = false; // __
const _9_native = 0 > 'ab';
console.assert(_9_expect === _9_native, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than-or-equal-to.js b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than-or-equal-to.js
index 9b0c45f..80e2c12 100644
--- a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than-or-equal-to.js
+++ b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than-or-equal-to.js
@@ -11,39 +11,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there may be more than one correct answer!
-const _1_expect = _; // __
+const _1_expect = true; // __
const _1_native = '1' <= 1;
console.assert(_1_expect === _1_native, 'Test 1');
const _2_expect = true; // __
-const _2_native = _ <= null;
+const _2_native = false <= null;
console.assert(_2_expect === _2_native, 'Test 2');
const _3_expect = false; // __
-const _3_native = _ <= null;
+const _3_native = true <= null;
console.assert(_3_expect === _3_native, 'Test 3');
-const _4_expect = _; // __
+const _4_expect = true; // __
const _4_native = '0.0' <= false;
console.assert(_4_expect === _4_native, 'Test 4');
-const _5_expect = _; // __
+const _5_expect = true; // __
const _5_native = false <= true;
console.assert(_5_expect === _5_native, 'Test 5');
-const _6_expect = _; // __
+const _6_expect = false; // __
const _6_native = '13' <= true;
console.assert(_6_expect === _6_native, 'Test 6');
-const _7_expect = _; // __
+const _7_expect = true; // __
const _7_native = 'aa' <= 'ab';
console.assert(_7_expect === _7_native, 'Test 7');
-const _8_expect = _; // __
+const _8_expect = true; // __
const _8_native = 'aa' <= 'aa';
console.assert(_8_expect === _8_native, 'Test 8');
-const _9_expect = _; // __
+const _9_expect = true; // __
const _9_native = 0 <= '';
console.assert(_9_expect === _9_native, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than.js b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than.js
index 1ada042..cc4a7e4 100644
--- a/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than.js
+++ b/01-primitives-and-operators/3-common-operators/2-comparisons/exercises/less-than.js
@@ -11,39 +11,39 @@ console.log('-- begin --');
// fill in the blanks to pass the assertions
// there may be more than one correct answer!
-const _1_expect = _; // 1 < 1
+const _1_expect = false; // 1 < 1
const _1_native = '1' < 1;
console.assert(_1_expect === _1_native, 'Test 1');
-const _2_expect = _; // 0 < 0
+const _2_expect = false; // 0 < 0
const _2_native = '' < null;
console.assert(_2_expect === _2_native, 'Test 2');
const _3_expect = false; // __
-const _3_native = _ < null;
+const _3_native = true < null;
console.assert(_3_expect === _3_native, 'Test 3');
-const _4_expect = _; // __
+const _4_expect = false; // __
const _4_native = '0.0' < false;
console.assert(_4_expect === _4_native, 'Test 4');
-const _5_expect = _; // __
+const _5_expect = true; // __
const _5_native = false < true;
console.assert(_5_expect === _5_native, 'Test 5');
-const _6_expect = _; // __
+const _6_expect = false; // __
const _6_native = '13' < true;
console.assert(_6_expect === _6_native, 'Test 6');
-const _7_expect = _; // __
+const _7_expect = true; // __
const _7_native = 'aa' < 'ab';
console.assert(_7_expect === _7_native, 'Test 7');
-const _8_expect = _; // __
+const _8_expect = false; // __
const _8_native = 'aa' < 'aa';
console.assert(_8_expect === _8_native, 'Test 8');
-const _9_expect = _; // __
+const _9_expect = false; // __
const _9_native = 0 < '';
console.assert(_9_expect === _9_native, 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/division.js b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/division.js
index c979473..8222ae8 100644
--- a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/division.js
+++ b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/division.js
@@ -10,39 +10,39 @@ console.log('-- begin --');
// what happens when you divide by NaN?
// what happens when you divide by Infinity?
-const _1_expect = _; // 1 / 1
+const _1_expect = 1; // 1 / 1
const _1_native = '1' / 1;
console.assert(Object.is(_1_expect, _1_native), 'Test 1');
-const _2_expect = _; // 1 / 0
+const _2_expect = Infinity; // 1 / 0
const _2_native = 1 / 0;
console.assert(Object.is(_2_expect, _2_native), 'Test 2');
-const _3_expect = _; // 0 / 0
+const _3_expect = NaN; // 0 / 0
const _3_native = false / null;
console.assert(Object.is(_3_expect, _3_native), 'Test 3');
-const _4_expect = _; // __
+const _4_expect = Infinity; // __
const _4_native = '12' / false;
console.assert(Object.is(_4_expect, _4_native), 'Test 4');
-const _5_expect = _; // __
+const _5_expect = 0; // __
const _5_native = false / true;
console.assert(Object.is(_5_expect, _5_native), 'Test 5');
-const _6_expect = _; // __
+const _6_expect = 0; // __
const _6_native = '13' / Infinity;
console.assert(Object.is(_6_expect, _6_native), 'Test 6');
-const _7_expect = _; // __
+const _7_expect = NaN; // __
const _7_native = '18' / 'aa';
console.assert(Object.is(_7_expect, _7_native), 'Test 7');
-const _8_expect = _; // __
+const _8_expect = NaN; // __
const _8_native = 'hello' / 'goodbye';
console.assert(Object.is(_8_expect, _8_native), 'Test 8');
-const _9_expect = _; // __
+const _9_expect = NaN; // __
const _9_native = undefined / '';
console.assert(Object.is(_9_expect, _9_native), 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/multiplication.js b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/multiplication.js
index 792cea1..68e0654 100644
--- a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/multiplication.js
+++ b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/multiplication.js
@@ -7,39 +7,39 @@ console.log('-- begin --');
// a * b
// cast both values to Number then do multiplication
-const _1_expect = _; // 1 * 1
+const _1_expect = 1; // 1 * 1
const _1_native = '1' * 1;
console.assert(Object.is(_1_expect, _1_native), 'Test 1');
-const _2_expect = _; // 0 * 1
+const _2_expect = 0; // 0 * 1
const _2_native = '' * true;
console.assert(Object.is(_2_expect, _2_native), 'Test 2');
-const _3_expect = _; // __
+const _3_expect = 0; // __
const _3_native = false * null;
console.assert(Object.is(_3_expect, _3_native), 'Test 3');
-const _4_expect = _; // __
+const _4_expect = 0; // __
const _4_native = '12' * false;
console.assert(Object.is(_4_expect, _4_native), 'Test 4');
-const _5_expect = _; // __
+const _5_expect = 0; // __
const _5_native = false * true;
console.assert(Object.is(_5_expect, _5_native), 'Test 5');
-const _6_expect = _; // __
+const _6_expect = Infinity; // __
const _6_native = '13' * Infinity;
console.assert(Object.is(_6_expect, _6_native), 'Test 6');
-const _7_expect = _; // __
+const _7_expect = NaN; // __
const _7_native = '18' * 'aa';
console.assert(Object.is(_7_expect, _7_native), 'Test 7');
-const _8_expect = _; // __
+const _8_expect = NaN; // __
const _8_native = 'hello' * 'goodbye';
console.assert(Object.is(_8_expect, _8_native), 'Test 8');
-const _9_expect = _; // __
+const _9_expect = NaN; // __
const _9_native = undefined * '';
console.assert(Object.is(_9_expect, _9_native), 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/plus.js b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/plus.js
index f9bbfef..cd9a5e2 100644
--- a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/plus.js
+++ b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/plus.js
@@ -15,39 +15,39 @@ console.log('-- begin --');
*/
-const _1_expect = _; // '1' + '1'
+const _1_expect = '11'; // '1' + '1'
const _1_native = '1' + 1;
console.assert(Object.is(_1_expect, _1_native), 'Test 1');
-const _2_expect = _; // 0 + 0
+const _2_expect = 0; // 0 + 0
const _2_native = 0 + null;
console.assert(Object.is(_2_expect, _2_native), 'Test 2');
-const _3_expect = _; // __
+const _3_expect = 0; // __
const _3_native = false + null;
console.assert(Object.is(_3_expect, _3_native), 'Test 3');
-const _4_expect = _; // '12' + 'false'
+const _4_expect = '12false'; // '12' + 'false'
const _4_native = '12' + false;
console.assert(Object.is(_4_expect, _4_native), 'Test 4');
-const _5_expect = _; // 0 + 1
+const _5_expect = 1; // 0 + 1
const _5_native = false + true;
console.assert(Object.is(_5_expect, _5_native), 'Test 5');
-const _6_expect = _; // __
+const _6_expect = '13Infinity' ; // __
const _6_native = '13' + Infinity;
console.assert(Object.is(_6_expect, _6_native), 'Test 6');
-const _7_expect = _; // __
+const _7_expect = '183'; // __
const _7_native = '18' + '3';
console.assert(Object.is(_7_expect, _7_native), 'Test 7');
-const _8_expect = _; // __
+const _8_expect = 'hellogoodbye'; // __
const _8_native = 'hello' + 'goodbye';
console.assert(Object.is(_8_expect, _8_native), 'Test 8');
-const _9_expect = _; // __
+const _9_expect = 'undefined'; // __
const _9_native = undefined + '';
console.assert(Object.is(_9_expect, _9_native), 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/remainder.js b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/remainder.js
index adcfb2c..96236ff 100644
--- a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/remainder.js
+++ b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/remainder.js
@@ -10,39 +10,39 @@ console.log('-- begin --');
// what happens when you use 0?
// what happens when you use NaN?
-const _1_expect = _; // __
+const _1_expect = 0; // __
const _1_native = '1' % 1;
console.assert(Object.is(_1_expect, _1_native), 'Test 1');
-const _2_expect = _; // __
+const _2_expect = NaN; // __
const _2_native = 0 % null;
console.assert(Object.is(_2_expect, _2_native), 'Test 2');
-const _3_expect = _; // __
+const _3_expect = NaN; // __
const _3_native = false % null;
console.assert(Object.is(_3_expect, _3_native), 'Test 3');
-const _4_expect = _; // __
+const _4_expect = NaN; // __
const _4_native = '12' % false;
console.assert(Object.is(_4_expect, _4_native), 'Test 4');
-const _5_expect = _; // __
+const _5_expect = 0; // __
const _5_native = false % true;
console.assert(Object.is(_5_expect, _5_native), 'Test 5');
-const _6_expect = _; // __
+const _6_expect = 13; // __
const _6_native = '13' % Infinity;
console.assert(Object.is(_6_expect, _6_native), 'Test 6');
-const _7_expect = _; // 18 % NaN
+const _7_expect = NaN; // 18 % NaN
const _7_native = '18' % 'aa';
console.assert(Object.is(_7_expect, _7_native), 'Test 7');
-const _8_expect = _; // NaN % NaN
+const _8_expect = NaN; // NaN % NaN
const _8_native = 'hello' % 'goodbye';
console.assert(Object.is(_8_expect, _8_native), 'Test 8');
-const _9_expect = _; // __
+const _9_expect = NaN; // __
const _9_native = undefined % '';
console.assert(Object.is(_9_expect, _9_native), 'Test 9');
diff --git a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/subtraction.js b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/subtraction.js
index 1fe7c5b..521d956 100644
--- a/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/subtraction.js
+++ b/01-primitives-and-operators/3-common-operators/3-arithmetic/exercises/subtraction.js
@@ -7,39 +7,39 @@ console.log('-- begin --');
// a - b
// cast both values to Number then do subtraction
-const _1_expect = _; // __
+const _1_expect = 0; // __
const _1_native = '1' - 1;
console.assert(Object.is(_1_expect, _1_native), 'Test 1');
-const _2_expect = _; // __
+const _2_expect = 0; // __
const _2_native = '' - null;
console.assert(Object.is(_2_expect, _2_native), 'Test 2');
-const _3_expect = _; // __
+const _3_expect = 0; // __
const _3_native = false - null;
console.assert(Object.is(_3_expect, _3_native), 'Test 3');
-const _4_expect = _; // 12 - 0
+const _4_expect = 12; // 12 - 0
const _4_native = '12' - false;
console.assert(Object.is(_4_expect, _4_native), 'Test 4');
-const _5_expect = _; // __
+const _5_expect = -1; // __
const _5_native = false - true;
console.assert(Object.is(_5_expect, _5_native), 'Test 5');
-const _6_expect = _; // __
+const _6_expect = -Infinity; // __
const _6_native = '13' - Infinity;
console.assert(Object.is(_6_expect, _6_native), 'Test 6');
-const _7_expect = _; // __
+const _7_expect = NaN; // __
const _7_native = '18' - 'aa';
console.assert(Object.is(_7_expect, _7_native), 'Test 7');
-const _8_expect = _; // __
+const _8_expect = NaN; // __
const _8_native = 'hello' - 'goodbye';
console.assert(Object.is(_8_expect, _8_native), 'Test 8');
-const _9_expect = _; // NaN - ''
+const _9_expect = NaN; // NaN - ''
const _9_native = undefined - '';
console.assert(Object.is(_9_expect, _9_native), 'Test 9');
diff --git a/01-primitives-and-operators/4-operator-precedence/exercises/1-math.js b/01-primitives-and-operators/4-operator-precedence/exercises/1-math.js
index 3ea8ddc..68cc623 100644
--- a/01-primitives-and-operators/4-operator-precedence/exercises/1-math.js
+++ b/01-primitives-and-operators/4-operator-precedence/exercises/1-math.js
@@ -9,37 +9,37 @@
*/
const a = 3 * 2 + 1;
-console.assert(a === __, 'a');
+console.assert(a === 7, 'a');
const b = 3 * (2 + 1);
-console.assert(b === __, 'b');
+console.assert(b === 9, 'b');
const c = 4 / 2 - 1;
-console.assert(c === __, 'c');
+console.assert(c === 1, 'c');
const d = 4 / (2 - 1);
-console.assert(d === __, 'd');
+console.assert(d === 4, 'd');
const e = 1 + -2 * 3;
-console.assert(e === __, 'e');
+console.assert(e === -5, 'e');
const f = (1 + -2) * 3;
-console.assert(f === __, 'f');
+console.assert(f === -3, 'f');
const h = (4 % 2) + 3;
-console.assert(h === __, 'h');
+console.assert(h === 3, 'h');
const i = 4 % (2 + 3);
-console.assert(i === __, 'i');
+console.assert(i === 4, 'i');
// --- beware of NaN! ---
// remember implicit coercion?
const x = 1 * 'two' * 3;
-console.assert(Object.is(x, __), 'x');
+console.assert(Object.is(x, NaN), 'x');
const y = 3 + undefined - 3;
-console.assert(Object.is(y, __), 'y');
+console.assert(Object.is(y, NaN), 'y');
const z = (2 - 2) / 0;
-console.assert(Object.is(z, __), 'z');
+console.assert(Object.is(z, NaN), 'z');
diff --git a/01-primitives-and-operators/4-operator-precedence/exercises/2-and-or.js b/01-primitives-and-operators/4-operator-precedence/exercises/2-and-or.js
index 1f9b252..c1f8bd2 100644
--- a/01-primitives-and-operators/4-operator-precedence/exercises/2-and-or.js
+++ b/01-primitives-and-operators/4-operator-precedence/exercises/2-and-or.js
@@ -13,50 +13,50 @@
// --- booleans ---
const a = true || (false && true);
-console.assert(a === __, 'a');
+console.assert(a === true, 'a');
const b = (true || false) && true;
-console.assert(b === __, 'b');
+console.assert(b === true, 'b');
const c = true && (false || false) && true;
-console.assert(c === __, 'c');
+console.assert(c === false, 'c');
const d = true || (false && false) || true;
-console.assert(d === __, 'd');
+console.assert(d === true, 'd');
const e = (true || false) && (false || true);
-console.assert(e === __, 'e');
+console.assert(e === true, 'e');
// --- numbers ---
const f = 1 || (0 && 2);
-console.assert(f === __, 'f');
+console.assert(f === 1, 'f');
const g = (1 || 0) && 2;
-console.assert(g === __, 'g');
+console.assert(g === 2, 'g');
const h = 1 && (0 || 0) && 2;
-console.assert(h === __, 'h');
+console.assert(h === 0, 'h');
const i = 1 || (0 && 0) || 2;
-console.assert(i === __, 'i');
+console.assert(i === 1, 'i');
const j = (1 || 0) && (0 || 2);
-console.assert(j === __, 'j');
+console.assert(j === 2, 'j');
// --- strings ---
const k = 'hi' || ('' && 'bye');
-console.assert(k === __, 'k');
+console.assert(k === 'hi', 'k');
const l = ('hi' || '') && 'bye';
-console.assert(l === __, 'l');
+console.assert(l === 'bye', 'l');
const m = 'hi' && ('' || '') && 'bye';
-console.assert(m === __, 'm');
+console.assert(m === '', 'm');
const n = 'hi' || ('' && '') || 'bye';
-console.assert(n === __, 'n');
+console.assert(n === 'hi', 'n');
const o = ('hi' || '') && ('' || 'bye');
-console.assert(o === __, 'o');
+console.assert(o === 'bye', 'o');
diff --git a/01-primitives-and-operators/4-operator-precedence/exercises/3-strings.js b/01-primitives-and-operators/4-operator-precedence/exercises/3-strings.js
index 456f032..1d5be2f 100644
--- a/01-primitives-and-operators/4-operator-precedence/exercises/3-strings.js
+++ b/01-primitives-and-operators/4-operator-precedence/exercises/3-strings.js
@@ -10,19 +10,19 @@ const z = 'jar';
// ---
const a = typeof w === typeof y;
-console.assert(a === __, 'a');
+console.assert(a === true, 'a');
const b = y + ' ' + z === 'horsejar';
-console.assert(b === __, 'b');
+console.assert(b === false, 'b');
const c = x.length < 4 || 10 < x.length;
-console.assert(c === __, 'c');
+console.assert(c === false, 'c');
const d = 4 < x.length || x.length < 10;
-console.assert(d === __, 'd');
+console.assert(d === true, 'd');
const e = z[2] === y[2] && z.length < y.length;
-console.assert(e === __, 'e');
+console.assert(e === true, 'e');
const f = w.length >= 6 && w.includes('to');
-console.assert(f === __, 'f');
+console.assert(f === true, 'f');
diff --git a/01-primitives-and-operators/4-operator-precedence/exercises/4-mixed.js b/01-primitives-and-operators/4-operator-precedence/exercises/4-mixed.js
index c4ac3b8..b351f3e 100644
--- a/01-primitives-and-operators/4-operator-precedence/exercises/4-mixed.js
+++ b/01-primitives-and-operators/4-operator-precedence/exercises/4-mixed.js
@@ -16,16 +16,16 @@ const z = -4;
// ---
const a = typeof typeof x === typeof w;
-console.assert(a === __, 'a');
+console.assert(a === true, 'a');
const b = w.length >= y + 1;
-console.assert(b === __, 'b');
+console.assert(b === true, 'b');
const c = y + z === w[4];
-console.assert(c === __, 'c');
+console.assert(c === false, 'c');
const d = y + z || x;
-console.assert(d === __, 'd');
+console.assert(d === true, 'd');
const e = x === (w.slice(1, 5).length === y);
-console.assert(e === __, 'e');
+console.assert(e === true, 'e');
diff --git a/01-primitives-and-operators/5-increment-decrement/exercises/1.js b/01-primitives-and-operators/5-increment-decrement/exercises/1.js
index 2edcc10..b8dcd1f 100644
--- a/01-primitives-and-operators/5-increment-decrement/exercises/1.js
+++ b/01-primitives-and-operators/5-increment-decrement/exercises/1.js
@@ -7,21 +7,21 @@ console.log('-- begin --');
let x = 0;
let y = ++x;
-console.assert(x === _, 'Test 1 x');
-console.assert(y === _, 'Test 1 y');
+console.assert(x === 1, 'Test 1 x');
+console.assert(y === 1, 'Test 1 y');
x = y--;
-console.assert(x === _, 'Test 2 x');
-console.assert(y === _, 'Test 2 y');
+console.assert(x === 1, 'Test 2 x');
+console.assert(y === 0, 'Test 2 y');
let z = x++;
-console.assert(x === _, 'Test 3 x');
-console.assert(y === _, 'Test 3 y');
-console.assert(z === _, 'Test 3 z');
+console.assert(x === 2, 'Test 3 x');
+console.assert(y === 0, 'Test 3 y');
+console.assert(z === 1, 'Test 3 z');
y = --x;
-console.assert(x === _, 'Test 4 x');
-console.assert(y === _, 'Test 4 y');
-console.assert(z === _, 'Test 4 z');
+console.assert(x === 1, 'Test 4 x');
+console.assert(y === 1, 'Test 4 y');
+console.assert(z === 1, 'Test 4 z');
console.log('-- end --');
diff --git a/01-primitives-and-operators/5-increment-decrement/exercises/2.js b/01-primitives-and-operators/5-increment-decrement/exercises/2.js
index 8281364..cae1f7f 100644
--- a/01-primitives-and-operators/5-increment-decrement/exercises/2.js
+++ b/01-primitives-and-operators/5-increment-decrement/exercises/2.js
@@ -7,21 +7,21 @@ console.log('-- begin --');
let x = 0;
let y = x--;
-console.assert(x === _, 'Test 1 x');
-console.assert(y === _, 'Test 1 y');
+console.assert(x === -1, 'Test 1 x');
+console.assert(y === 0, 'Test 1 y');
x = ++y;
-console.assert(x === _, 'Test 2 x');
-console.assert(y === _, 'Test 2 y');
+console.assert(x === 1, 'Test 2 x');
+console.assert(y === 1, 'Test 2 y');
let z = y++;
-console.assert(x === _, 'Test 3 x');
-console.assert(y === _, 'Test 3 y');
-console.assert(z === _, 'Test 3 z');
+console.assert(x === 1, 'Test 3 x');
+console.assert(y === 2, 'Test 3 y');
+console.assert(z === 1, 'Test 3 z');
x = --z;
-console.assert(x === _, 'Test 4 x');
-console.assert(y === _, 'Test 4 y');
-console.assert(z === _, 'Test 4 z');
+console.assert(x === 0, 'Test 4 x');
+console.assert(y === 2, 'Test 4 y');
+console.assert(z === 0, 'Test 4 z');
console.log('-- end --');
diff --git a/01-primitives-and-operators/5-increment-decrement/exercises/3.js b/01-primitives-and-operators/5-increment-decrement/exercises/3.js
index 7d20f82..1760a75 100644
--- a/01-primitives-and-operators/5-increment-decrement/exercises/3.js
+++ b/01-primitives-and-operators/5-increment-decrement/exercises/3.js
@@ -10,16 +10,16 @@ let y = x--;
console.assert(x === -1, 'Test 1 x');
console.assert(y === 0, 'Test 1 y');
-x = _;
+x = y--;
console.assert(x === 0, 'Test 2 x');
console.assert(y === -1, 'Test 2 y');
-let z = _;
+let z = x++;
console.assert(x === 1, 'Test 3 x');
console.assert(y === -1, 'Test 3 y');
console.assert(z === 0, 'Test 3 z');
-_ = --z;
+z = --z;
console.assert(x === 1, 'Test 4 x');
console.assert(y === -1, 'Test 4 y');
console.assert(z === -1, 'Test 4 z');
diff --git a/03-control-flow/1-isolate/0-block-scope/exercises/1-missing-values.js b/03-control-flow/1-isolate/0-block-scope/exercises/1-missing-values.js
index 415ad92..5e2edb3 100644
--- a/03-control-flow/1-isolate/0-block-scope/exercises/1-missing-values.js
+++ b/03-control-flow/1-isolate/0-block-scope/exercises/1-missing-values.js
@@ -5,11 +5,11 @@
console.log('-- begin --');
const a = 3;
-console.assert(a === _, 'Test 1');
+console.assert(a === 3, 'Test 1');
{
const a = 5;
- console.assert(a === _, 'Test 2');
+ console.assert(a === 5, 'Test 2');
}
-console.assert(a === _, 'Test 3');
+console.assert(a === 3, 'Test 3');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/0-block-scope/exercises/2-missing-values.js b/03-control-flow/1-isolate/0-block-scope/exercises/2-missing-values.js
index 534f8c6..ff8cf13 100644
--- a/03-control-flow/1-isolate/0-block-scope/exercises/2-missing-values.js
+++ b/03-control-flow/1-isolate/0-block-scope/exercises/2-missing-values.js
@@ -5,14 +5,14 @@
console.log('-- begin --');
let x = 3;
-console.assert(x === _, 'Test 1: x');
+console.assert(x === 3, 'Test 1: x');
{
x = 10;
const y = 5;
- console.assert(x === _, 'Test 2: x');
- console.assert(y === _, 'Test 3: y');
+ console.assert(x === 10, 'Test 2: x');
+ console.assert(y === 5, 'Test 3: y');
}
-console.assert(x === _, 'Test 4: x');
+console.assert(x === 10, 'Test 4: x');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/0-block-scope/exercises/3-missing-variables.js b/03-control-flow/1-isolate/0-block-scope/exercises/3-missing-variables.js
index 3c2b9d1..36302ea 100644
--- a/03-control-flow/1-isolate/0-block-scope/exercises/3-missing-variables.js
+++ b/03-control-flow/1-isolate/0-block-scope/exercises/3-missing-variables.js
@@ -10,6 +10,6 @@ let b = 3;
const a = 5;
b = a;
}
-console.assert(_ === 5, 'Test 1');
+console.assert(b === 5, 'Test 1');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/0-block-scope/exercises/4-missing-variables.js b/03-control-flow/1-isolate/0-block-scope/exercises/4-missing-variables.js
index b30e933..c4f544f 100644
--- a/03-control-flow/1-isolate/0-block-scope/exercises/4-missing-variables.js
+++ b/03-control-flow/1-isolate/0-block-scope/exercises/4-missing-variables.js
@@ -11,7 +11,7 @@ let y = 'hi!';
let y = 'bye!';
}
x = 'bye!';
-console.assert(_ === 'hi!', 'Test 1');
-console.assert(_ === 'bye!', 'Test 2');
+console.assert(y === 'hi!', 'Test 1');
+console.assert(x === 'bye!', 'Test 2');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/0-block-scope/exercises/5-missing-variables.js b/03-control-flow/1-isolate/0-block-scope/exercises/5-missing-variables.js
index fb4a63d..0cdfe6b 100644
--- a/03-control-flow/1-isolate/0-block-scope/exercises/5-missing-variables.js
+++ b/03-control-flow/1-isolate/0-block-scope/exercises/5-missing-variables.js
@@ -10,6 +10,6 @@ let m = 0;
const m = 1;
l = 0;
}
-console.assert(_ === 0, 'Test 1');
+console.assert(m === 0, 'Test 1');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/1.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/1.js
index 309df59..55fd968 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/1.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/1.js
@@ -16,6 +16,6 @@ if (value1 && !value2) {
path = 'else if';
}
-console.assert(path === _);
+console.assert(path === 'if');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/3.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/3.js
index ce009f3..245a0c2 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/3.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/3.js
@@ -18,6 +18,6 @@ if (value1 === value2) {
path = 'else if 2';
}
-console.assert(path === _);
+console.assert(path === 'else if 1');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/4.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/4.js
index ad2bb26..4e126ec 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/4.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/1-assert-path/4.js
@@ -20,6 +20,6 @@ if (value1 && !value2) {
path = 'else';
}
-console.assert(path === _);
+console.assert(path === 'else');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/1.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/1.js
index 9542c33..25cb4ac 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/1.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/1.js
@@ -9,8 +9,8 @@ console.log('-- begin --');
// what do all the solutions have in common?
// or maybe the asserted path is unreachable!
-const value1 = _;
-const value2 = _;
+const value1 = false;
+const value2 = false;
let path = '';
if (value1 && !value2) {
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/2.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/2.js
index 62f3742..bc8b0aa 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/2.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/2.js
@@ -9,8 +9,8 @@ console.log('-- begin --');
// what do all the solutions have in common?
// or maybe the asserted path is unreachable!
-const value1 = _;
-const value2 = _;
+const value1 = 100;
+const value2 = '100';
let path = '';
if (value1 === value2) {
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/3.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/3.js
index 5180bdd..bc85b2a 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/3.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/3.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
// what do all solutions to the same path have in common?
// or maybe there are unreachable paths!
-const value1 = _;
-const value2 = _;
+const value1 = true;
+const value2 = true;
let path = '';
if (value1 && !value2) {
@@ -22,6 +22,6 @@ if (value1 && !value2) {
path = 'else';
}
-console.log(path);
+console.log(path === 'else');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/4.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/4.js
index edc6cec..c23842d 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/4.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/2-initial-values/4.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
// what do all solutions to the same path have in common?
// or maybe there are unreachable paths!
-const value1 = _;
-const value2 = _;
+const value1 = 100;
+const value2 = -100;
let path = '';
if (value1 === value2) {
@@ -24,6 +24,6 @@ if (value1 === value2) {
path = 'else';
}
-console.log(path);
+console.log(path === 'else if');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/1.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/1.js
index 6c92368..fa49abc 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/1.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/1.js
@@ -14,9 +14,9 @@ const value1 = 'hello';
const value2 = false;
let path = '';
-if (_) {
+if (value1 && value2) {
path = 'if';
-} else {
+} else { value1 && !value2
path = 'else';
}
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/2.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/2.js
index aac3440..cc9d0ad 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/2.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/2.js
@@ -14,9 +14,9 @@ const value1 = null;
const value2 = 400;
let path = '';
-if (_) {
+if (value1 && !value2 ) {
path = 'if';
-} else if (_) {
+} else if ( typeof value1 && typeof value2) {
path = 'else if';
} else {
path = 'else';
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/3.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/3.js
index c865d85..2f88969 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/3.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/3.js
@@ -14,9 +14,9 @@ const value1 = '';
const value2 = -1;
let path = '';
-if (_) {
+if (value1 || value2) {
path = 'if';
-} else if (_) {
+} else if (value1 && value2) {
path = 'else if';
} else {
path = 'else';
diff --git a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/4.js b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/4.js
index 0bc1b90..3dbd358 100644
--- a/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/4.js
+++ b/03-control-flow/1-isolate/1-conditional-statements/exercises/3-conditions/4.js
@@ -15,11 +15,11 @@ const value2 = 200;
const value3 = false;
let path = '';
-if (_) {
+if (value1 && value2 && value3) {
path = 'if';
-} else if (_) {
+} else if ((value1 || value2) && value3) {
path = 'else if 1';
-} else if (_) {
+} else if (value1 && value2 || value3) {
path = 'else if 2';
} else {
path = 'else';
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/and-to-condition.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/and-to-condition.js
index 28c636a..09f8f0c 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/and-to-condition.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/and-to-condition.js
@@ -7,7 +7,7 @@ console.log('-- begin --');
// refactor this code to use a conditional instead of &&
// try different values and different types
-const a = _;
+const a = 1500;
console.log(a);
const isBigNumber = typeof a === 'number' && a > 1000;
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-and.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-and.js
index 88a69d1..75788b4 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-and.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-and.js
@@ -7,7 +7,7 @@ console.log('-- begin --');
// refactor this code to use && instead of a conditional
// try different values and different types
-const input = _;
+const input = 'pickles';
const password = 'pickles';
console.log(input, password);
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-or.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-or.js
index 6bd2c7d..0feb693 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-or.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-or.js
@@ -7,8 +7,8 @@ console.log('-- begin --');
// refactor this code to use || instead of a conditional
// try different values and different types
-const isAfterFive = _;
-const isTheWeekend = _;
+const isAfterFive = true;
+const isTheWeekend = true;
console.log(isAfterFive, isTheWeekend);
let stopWorking = isAfterFive === true;
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-ternary.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-ternary.js
index a10e6f6..4cd21b1 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-ternary.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/condition-to-ternary.js
@@ -7,9 +7,9 @@ console.log('-- begin --');
// refactor this code to use a _?_:_ instead of a conditional
// try different values and different types
-const isLoggedIn = _;
-const secretInformation = _;
-const warningMessage = _;
+const isLoggedIn = true;
+const secretInformation = 'you work at school';
+const warningMessage = 'you are a teacher';
console.log(isLoggedIn, secretInformation, warningMessage);
let toDisplay;
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/or-to-condition.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/or-to-condition.js
index ceab664..5c1ff66 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/or-to-condition.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/or-to-condition.js
@@ -7,11 +7,12 @@ console.log('-- begin --');
// refactor this code to use a condition instead of ||
// try different values and different types
-const firstName = _;
-const lastName = _;
+const firstName = 'A';
+const lastName = 'A';
console.log(firstName, lastName);
-const hasAnAName = firstName[0] === 'A' || lastName[0] === 'A';
+const hasAnAName = firstName[0] === 'A' || lastName[0] === 'A'
+
console.log(hasAnAName);
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/ternary-to-condition.js b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/ternary-to-condition.js
index c13b0ac..3ac3838 100644
--- a/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/ternary-to-condition.js
+++ b/03-control-flow/1-isolate/2-refactoring-truthiness-operators/exercises/ternary-to-condition.js
@@ -7,10 +7,15 @@ console.log('-- begin --');
// refactor this code to use a conditional instead of a ternary
// try different values and different types
-const isVegetarian = _;
+const isVegetarian = true;
console.log(isVegetarian);
-const favoriteFood = isVegetarian ? 'beans' : 'bacon';
+let favoriteFood;
+if (isVegetarian) {
+ favoriteFood = 'beans'}
+ else{
+ favoriteFood = 'bacon'
+ };
console.log(favoriteFood);
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/3-while-loops/exercises/1-one-dozen-eggs.js b/03-control-flow/1-isolate/3-while-loops/exercises/1-one-dozen-eggs.js
index e671eec..e9d9a75 100644
--- a/03-control-flow/1-isolate/3-while-loops/exercises/1-one-dozen-eggs.js
+++ b/03-control-flow/1-isolate/3-while-loops/exercises/1-one-dozen-eggs.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
let numberOfEggs = 0;
-while (numberOfEggs !== _) {
- numberOfEggs = numberOfEggs + _;
+while (numberOfEggs !== 12) {
+ numberOfEggs = numberOfEggs + 1;
console.log('numberOfEggs:', numberOfEggs);
}
diff --git a/03-control-flow/1-isolate/3-while-loops/exercises/2-stepping-up.js b/03-control-flow/1-isolate/3-while-loops/exercises/2-stepping-up.js
index 7169806..c27f89b 100644
--- a/03-control-flow/1-isolate/3-while-loops/exercises/2-stepping-up.js
+++ b/03-control-flow/1-isolate/3-while-loops/exercises/2-stepping-up.js
@@ -27,11 +27,11 @@ let repeatedString = '';
used to count the number of times the string has been repeated
*/
let i = 0;
-while (_) {
- repeatedString = _;
+while (i < totalRepetitions) {
+ repeatedString += toRepeat ;
console.log(repeatedString);
- _; // i should grow by 1
+ i++; // i should grow by 1
}
console.assert(
diff --git a/03-control-flow/1-isolate/3-while-loops/exercises/3-stepping-down.js b/03-control-flow/1-isolate/3-while-loops/exercises/3-stepping-down.js
index 1e0d453..b8b22a0 100644
--- a/03-control-flow/1-isolate/3-while-loops/exercises/3-stepping-down.js
+++ b/03-control-flow/1-isolate/3-while-loops/exercises/3-stepping-down.js
@@ -25,11 +25,11 @@ const message = ' days remaining until ' + holiday;
this stepper is used to count down the days to a holiday
*/
let daysRemaining = 14;
-while (_) {
+while (daysRemaining > 0) {
const tweet = daysRemaining + message;
console.log(tweet);
- daysRemaining = _;
+ daysRemaining--;
}
const finalTweet = 'today is ' + holiday + '!';
diff --git a/03-control-flow/1-isolate/3-while-loops/exercises/4-initial-value.js b/03-control-flow/1-isolate/3-while-loops/exercises/4-initial-value.js
index a503aaa..120d63d 100644
--- a/03-control-flow/1-isolate/3-while-loops/exercises/4-initial-value.js
+++ b/03-control-flow/1-isolate/3-while-loops/exercises/4-initial-value.js
@@ -19,7 +19,7 @@ console.log('-- begin --');
how many can you find?
what do all the correct answers have in common?
*/
-let sum = _;
+let sum = 16;
while (sum < 100) {
if (sum % 2 === 0) {
diff --git a/03-control-flow/1-isolate/3-while-loops/exercises/5-boolean-flag-variable.js b/03-control-flow/1-isolate/3-while-loops/exercises/5-boolean-flag-variable.js
index 91b8ae8..a141665 100644
--- a/03-control-flow/1-isolate/3-while-loops/exercises/5-boolean-flag-variable.js
+++ b/03-control-flow/1-isolate/3-while-loops/exercises/5-boolean-flag-variable.js
@@ -27,11 +27,11 @@ let paddedString = 'hi';
// boolean flag variable
let isLongEnough = false;
-while (_) {
- paddedString = _;
+while (!isLongEnough) {
+ paddedString += padding;
console.log(paddedString);
- if (_) {
- _;
+ if (paddedString.length === longEnough) {
+ isLongEnough = true;
}
}
diff --git a/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-1.js b/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-1.js
index 49e3a20..d5806ea 100644
--- a/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-1.js
+++ b/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-1.js
@@ -8,18 +8,21 @@ const word = 'pitsicola';
let index = 0;
let logThisOne = true;
-while (index < _._) {
- index += 1;
-
+while (index < word.length - 1) {
+ index++;
logThisOne = !logThisOne;
- if (!_) {
- _;
+
+ if (logThisOne) {
+ continue;
}
const nextLetter = word[index];
console.log(index + ': ', nextLetter); // i, s, c, l
}
-console.assert(index === _._, 'there are this many letters in the word');
+console.assert(
+ index === word.length - 1,
+ 'there are this many letters in the word',
+);
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-2.js b/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-2.js
index 7262071..baa4b3c 100644
--- a/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-2.js
+++ b/03-control-flow/1-isolate/4-break-continue/exercises/every-other-letter-2.js
@@ -7,18 +7,19 @@ console.log('-- begin --');
const word = 'pitsicola';
let index = -1;
-while (index < _._) {
+while (index < word.length) {
+ index++
index += 1;
// skip characters with odd indexes
- if (index % _ !== _) {
- _;
+ if (index % 2 !== 0) {
+ continue;
}
const nextLetter = word[index];
console.log(index + ': ' + nextLetter); // p, t, i, o, a
}
-console.assert(_ === _._, 'index should be the same as the word length');
+console.assert(index === word.length, 'index should be the same as the word length');
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/4-break-continue/exercises/find-letter-index.js b/03-control-flow/1-isolate/4-break-continue/exercises/find-letter-index.js
index 4fd0b72..254a28b 100644
--- a/03-control-flow/1-isolate/4-break-continue/exercises/find-letter-index.js
+++ b/03-control-flow/1-isolate/4-break-continue/exercises/find-letter-index.js
@@ -5,7 +5,7 @@
console.log('-- begin --');
const word = 'pitsicola';
-const targetLetter = _;
+const targetLetter = 'c';
let index = 0;
while (true) {
@@ -13,7 +13,7 @@ while (true) {
console.log(index + ': ' + nextLetter);
if (nextLetter === targetLetter) {
- _;
+ break;
}
index += 1;
diff --git a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/1-stepping-up.js b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/1-stepping-up.js
index c094b56..44f4201 100644
--- a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/1-stepping-up.js
+++ b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/1-stepping-up.js
@@ -21,13 +21,13 @@ console.log('-- begin --');
*/
-const toRepeat = '_';
+const toRepeat = 'howdy';
const totalRepetitions = 4;
let repeatedString = '';
-for (_; i < _; _) {
- repeatedString += _;
+for (let i = 0; i < totalRepetitions; i++) {
+ repeatedString += toRepeat;
console.log(repeatedString);
}
diff --git a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/2-stepping-down.js b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/2-stepping-down.js
index fdc33fb..27d65bb 100644
--- a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/2-stepping-down.js
+++ b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/2-stepping-down.js
@@ -22,11 +22,11 @@ console.log('-- begin --');
*/
const holiday = 'winter solstice';
-const message = '_' + holiday;
+const message = 'days remaining until' + holiday;
let tweet = '';
-for (let daysToHoliday = 14; _; _) {
- tweet = daysToHoliday + message;
+for (let daysToHoliday = 14; daysToHoliday > 0; daysToHoliday--) {
+ tweet = daysToHoliday + ' ' + message;
console.log(tweet);
}
diff --git a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/3-uppercasify.js b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/3-uppercasify.js
index 74e6364..b621883 100644
--- a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/3-uppercasify.js
+++ b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/3-uppercasify.js
@@ -17,12 +17,11 @@ console.log('lowerCaseString:', lowerCaseString);
let upperCaseString = '';
-for (_; _; _) {
- const nextLetter = lowerCaseString[_];
- const letterUpperCased = _._();
- upperCaseString += _;
+for (let i = 0; i < lowerCaseString.length; i++) {
+ const letterUpperCased = lowerCaseString[i].toUpperCase();
+ upperCaseString += letterUpperCased;
- console.log(_); // your stepper variable
+ console.log(i); // your stepper variable
console.log('upperCaseString:', upperCaseString);
}
diff --git a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/4-reverse-string.js b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/4-reverse-string.js
index ea97206..d303dd1 100644
--- a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/4-reverse-string.js
+++ b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/4-reverse-string.js
@@ -17,11 +17,11 @@ console.log('originalString:', originalString);
let reversedString = '';
-for (_; _; _) {
- const nextLetter = _;
- reversedString = _;
+for (let i = originalString.length - 1; i >= 0; i--) {
+ const nextLetter = originalString [i];
+ reversedString += nextLetter;
- console.log(_); // your stepper variable
+ console.log('reversedString:'); // your stepper variable
console.log('reversedString:', reversedString);
}
diff --git a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/5-reversicasify.js b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/5-reversicasify.js
index 7ec1308..5121657 100644
--- a/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/5-reversicasify.js
+++ b/03-control-flow/1-isolate/6-for-loops/exercises/2-blanks/5-reversicasify.js
@@ -13,14 +13,24 @@ console.log('-- begin --');
const originalString = 'abcde';
console.log('originalString:', originalString);
-let reverseUpperCase = '';
+let reverseUpperCase = "";
-for (_; _; _) {
- // a blank canvas :)
+for (let i = originalString.length-1; i >= 0; i--){
+ const newLetter = originalString[i];
+ reverseUpperCase += newLetter;
+ console.log(i);
+ console.log ('reverseUpperCase', reverseUpperCase);
+}
+let upperCaseString = '';
+for (let i = 0; i < reverseUpperCase.length; i++) {
+ const newUpperCased = reverseUpperCase[i].toUpperCase();
+upperCaseString += newUpperCased;
+console.log (i);
+console.log ('upperCaseString', upperCaseString);
}
-console.assert(
- reverseUpperCase === 'EDCBA',
+console.assert (
+ upperCaseString === 'EDCBA',
'reversed string is the original reversed',
);
diff --git a/03-control-flow/1-isolate/7-refactoring-loops/exercises/1.js b/03-control-flow/1-isolate/7-refactoring-loops/exercises/1.js
index 30e467c..6a77005 100644
--- a/03-control-flow/1-isolate/7-refactoring-loops/exercises/1.js
+++ b/03-control-flow/1-isolate/7-refactoring-loops/exercises/1.js
@@ -12,10 +12,15 @@ for (const letter of school) {
// write this for...of loop as a for loop:
-for (_; _; _) {}
+for (let i = 0; i < school.length; i++) {
+ console.log(school[i]);
+}
// write this for loop as a while loop:
-
-while (_) {}
+let index = 0;
+while (index < school.length) {
+ console.log (school[index]);
+ index++;
+}
console.log('-- end --');
diff --git a/03-control-flow/1-isolate/7-refactoring-loops/exercises/2.js b/03-control-flow/1-isolate/7-refactoring-loops/exercises/2.js
index 66a2ceb..0f723a4 100644
--- a/03-control-flow/1-isolate/7-refactoring-loops/exercises/2.js
+++ b/03-control-flow/1-isolate/7-refactoring-loops/exercises/2.js
@@ -12,7 +12,11 @@ for (let i = minutesLeft; i > 0; i--) {
}
// refactor this for loop to a while loop
-
-while (_) {}
+let i = minutesLeft;
+while (i > 0) {
+ const message = `${i} minutes left`;
+ console.log (message);
+ i--;
+}
console.log('-- end --');
diff --git a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/1.js b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/1.js
index 64360b1..1349acd 100644
--- a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/1.js
+++ b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/1.js
@@ -4,7 +4,7 @@
// fill in the blank to pass the assertion
-const interactionValue = _('asdf');
+const interactionValue = confirm('asdf');
console.log(typeof interactionValue, interactionValue);
diff --git a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/2.js b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/2.js
index ae6cc96..31724f0 100644
--- a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/2.js
+++ b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/2.js
@@ -4,7 +4,7 @@
// fill in the blank to pass the assertion
-const inputValue = _('asdf');
+const inputValue = prompt('asdf');
console.log(typeof inputValue, inputValue);
diff --git a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/3.js b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/3.js
index 3d06867..4eb65f6 100644
--- a/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/3.js
+++ b/03-control-flow/2-integrate/0-prompt-alert-confirm/exercises/3.js
@@ -4,7 +4,7 @@
// fill in the blank to pass the assertion
-const interactionValue = _('asdf');
+const interactionValue = alert('asdf');
console.log(typeof interactionValue, interactionValue);
diff --git a/03-control-flow/2-integrate/1-conditionals/exercises/remembery/0-complete.re.js b/03-control-flow/2-integrate/1-conditionals/exercises/remembery/0-complete.re.js
index 9c984b0..625dfc7 100644
--- a/03-control-flow/2-integrate/1-conditionals/exercises/remembery/0-complete.re.js
+++ b/03-control-flow/2-integrate/1-conditionals/exercises/remembery/0-complete.re.js
@@ -1,5 +1,4 @@
-// #todo
-
+"use strict";
'use strict';
alert(
@@ -45,4 +44,4 @@ if (guessIsCorrect) {
);
} else {
alert('nope :(');
-}
+}
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/0-complete.re.js b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/0-complete.re.js
index 70d0a0e..0f2a1a3 100644
--- a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/0-complete.re.js
+++ b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/0-complete.re.js
@@ -1,5 +1,3 @@
-// #todo
-
'use strict';
const instructions = `Two-Player Remembery
@@ -46,4 +44,4 @@ if (guess1 === phrase1) {
}
}
-alert(`your score: ${score}`);
+alert(`your score: ${score}`);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/1-blanks.js b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/1-blanks.js
index 674e174..1e208c8 100644
--- a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/1-blanks.js
+++ b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/1-blanks.js
@@ -1,5 +1,3 @@
-// #todo
-
'use strict';
/* Two-Player Remembery
@@ -35,9 +33,9 @@ console.log('phrase3:', typeof phrase3, phrase3);
alert('Player 2, get back here');
const phrasesToRemember = `Player 2, remember these:
- 1. "${_}"
- 2. "${_}"
- 3. "${_}"`;
+ 1. "${phrase1}"
+ 2. "${phrase2}"
+ 3. "${phrase3}"`;
alert(phrasesToRemember);
let score = 0;
@@ -45,28 +43,28 @@ let score = 0;
const guess1 = prompt('Player 1, enter your first guess:');
console.log('guess1:', typeof guess1, guess1);
-if (_) {
- score = _;
+if (phrase1 === guess1) {
+ score = 1;
const guess2 = prompt('Player 1, enter your second guess:');
console.log('guess2:', typeof guess2, guess2);
- if (_) {
- score = _;
+ if (phrase2 === guess2) {
+ score++;
const guess3 = prompt('Player 1, enter your third guess:');
console.log('guess3:', typeof guess3, guess3);
- if (_) {
- score = _;
+ if (phrase3 === guess3) {
+ score++;
- alert(`your score: ${_}`);
+ alert(`your score: ${score}`);
} else {
- alert(`your score: ${_}`);
+ alert(`your score: ${score}`);
}
} else {
- alert(`your score: ${_}`);
+ alert(`your score: ${score}`);
}
} else {
- alert(`your score: ${_}`);
-}
+ alert(`your score: ${score}`);
+}
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/2-bugs.js b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/2-bugs.js
index 1697410..47f1dcf 100644
--- a/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/2-bugs.js
+++ b/03-control-flow/2-integrate/1-conditionals/exercises/two-player-remembery/2-bugs.js
@@ -22,31 +22,31 @@ alert(instructions);
alert('Player 2: go hide');
-const phrase = prompt('Player 1, enter your first phrase:');
-const phrase = prompt('Player 1, enter your second phrase:');
-const phrase = prompt('Player 1, enter your third phrase:');
+const phrase1 = prompt('Player 1, enter your first phrase:');
+const phrase2 = prompt('Player 2, enter your second phrase:');
+const phrase3 = prompt('Player 3, enter your third phrase:');
alert('Player 2, get back here');
const phrasesToRemember = `Player 2, remember these:
- 1. "${phrase}"
- 2. "${phrase}"
- 3. "${phrase}"
+ 1. "${phrase1}"
+ 2. "${phrase2}"
+ 3. "${phrase3}"
`;
alert(phrasesToRemember);
-let score = 3;
+let score = 0
const guess1 = prompt('Player 1, enter your first guess:');
-if (guess1 !== phrase) {
+if (guess1 !== phrase1) {
score = score - 1;
const guess2 = prompt('Player 1, enter your second guess:');
- if (guess2 !== phrase) {
+ if (guess2 !== phrase2) {
score = score - 1;
const guess3 = prompt('Player 1, enter your third guess:');
- if (guess3 !== phrase) {
+ if (guess3 !== phrase3) {
score = score - 1;
}
}
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/1-blanks.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/1-blanks.js
index 3107723..9b18e90 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/1-blanks.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/1-blanks.js
@@ -3,20 +3,20 @@
'use strict';
let userInput = '';
-let inputIsAboutFrogs = _;
+let inputIsAboutFrogs = false;
while (!inputIsAboutFrogs) {
userInput = prompt('tell me something about frogs');
console.log('userInput:', typeof userInput, userInput);
// check if the user entered nothing, or clicked cancel
- if (_) {
+ if (userInput === null || userInput === '') {
alert('that is not something');
continue;
}
// search the user input for "frog", upper or lower case
- if (_) {
- inputIsAboutFrogs = _;
+ if (userInput.toLowerCase().includes('frog')) {
+ inputIsAboutFrogs = true;
continue;
}
@@ -25,4 +25,4 @@ while (!inputIsAboutFrogs) {
const finalMessage =
'i just learned something cool about frogs!\n\n- "' + userInput + '"';
-alert(finalMessage);
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/2-bugs.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/2-bugs.js
index c5658bd..e89ee74 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/2-bugs.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/2-bugs.js
@@ -18,8 +18,8 @@ while (!inputIsAboutFrogs) {
alert('that is not something');
}
// regular expression: this works!
- else if (/frog/i.test(userInput) === true) {
- inputIsAboutFrogs = false;
+ else if (userInput.toLowerCase().includes('frog')) {
+ inputIsAboutFrogs = true;
} else {
alert('nope, not about frogs. try again.');
}
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/3-goals.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/3-goals.js
index dc8dd9c..882d821 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/3-goals.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/1-frogopedia/3-goals.js
@@ -5,12 +5,25 @@
let userInput = '';
while (true) {
userInput = prompt('tell me something about frogs');
+console.log('userInput:', typeof userInput, userInput);
/* -- BEGIN: validate input -- */
+
+ // check if the user entered nothing, or clicked cancel
+ if (userInput === null || userInput === '') {
+ alert('that is not something');
+ continue;
+ }
- /* -- END: validate input -- */
+ // search the user input for "frog", upper or lower case
+ if (userInput.toLowerCase().includes('frog')) {
+ alert('Great! that is about frogs.');
+ break;}
+ else{
+ alert('nope, not about frogs. try again.');
+}
}
+ /* -- END: validate input -- */
+const finalMessage = 'i just learned something cool about frogs!\n\n- "' + userInput + '"';
-const finalMessage =
- 'i just learned something cool about frogs!\n\n- "' + userInput + '"';
-alert(finalMessage);
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/1-blanks.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/1-blanks.js
index a5edcc6..e907ebb 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/1-blanks.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/1-blanks.js
@@ -7,18 +7,17 @@ while (true) {
userInput = prompt('enter your name:');
console.log('userInput:', typeof userInput, userInput);
- if (_) {
+ if (userInput === null || userInput === '') {
alert('nothing is not a name');
continue;
}
-
// which user interaction returns a boolean value?
const confirmMessage = 'is this correct?\n"' + userInput + '"';
- const userDidConfirm = _(confirmMessage);
+ const userDidConfirm = confirm(confirmMessage);
console.log('userDidConfirm:', typeof userDidConfirm, userDidConfirm);
// which variable above has a value representing the user's confirmation?
- if (_) {
+ if (userDidConfirm) {
break;
}
}
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/2-bugs.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/2-bugs.js
index b8148f2..29d50c3 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/2-bugs.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/2-confirming-input/2-bugs.js
@@ -10,17 +10,18 @@
*/
-let userInput = '';
+let userInput = 'dora';
let userConfirmed = false;
while (userConfirmed) {
userInput = prompt('enter your name:');
console.log('userInput:', typeof userInput, userInput);
- if (userInput === false) {
+ if (userInput === null || userInput === '') {
alert('nothing is not a name');
continue;
}
+
const confirmMessage = 'is this correct?\n"' + userInput + '"';
userConfirmed = alert(confirmMessage);
}
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/1-blanks.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/1-blanks.js
index d93f57f..b9a39bb 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/1-blanks.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/1-blanks.js
@@ -9,18 +9,20 @@ while (isTooShort) {
console.log('userInput:', typeof userInput, userInput);
// continue if the user did not input anything
- ___;
+ if (userInput === null) {
+ continue;
+ }
// continue if the input is too short (5 characters or less)
- if (_) {
+ if (userInput.length <= 5) {
alert('too short');
- _;
+ continue;
}
// toggle the flag variable, telling the loop to finish
- isTooShort = _;
+ isTooShort = false;
}
const finalMessage =
'"' + userInput + '" is ' + userInput.length + ' characters long';
-alert(finalMessage);
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/2-bugs.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/2-bugs.js
index 334a1d1..f55d011 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/2-bugs.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/3-long-string/2-bugs.js
@@ -11,20 +11,20 @@
*/
-const userInput = '';
-const isLongEnough = false;
-while (isLongEnough) {
+let userInput = '';
+let isLongEnough = false;
+while (!isLongEnough) {
userInput = prompt('enter anything longer than 5 characters');
- if (userInput !== null || userInput !== '') {
+ if (userInput === null || userInput === '') {
alert('that is nothing');
- } else if ((userInput.length = 5)) {
+ } else if (userInput.length <= 5) {
alert('too short');
} else {
- isLongEnough === true;
+ isLongEnough = true;
}
}
const finalMessage =
'"' + userInput + '" is ' + userInput.length + ' characters long';
-alert(finalMessage);
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/1-blanks.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/1-blanks.js
index 45218c6..75be301 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/1-blanks.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/1-blanks.js
@@ -2,24 +2,48 @@
'use strict';
-let validInput = '';
-while (true) {
- const userInput = prompt('enter anything with "e" or "E" as the 5th letter');
- console.log('userInput:', typeof userInput, userInput);
+let userInput = '';
+let userConfirmed = false;
+while (!userConfirmed) {
+ userInput = prompt('enter a word to filter:');
- // make sure the user entered something
- ___;
+ if (userInput === '' || userInput === null) {
+ alert('nope, enter something');
+ continue;
+ }
- // make sure it is long enough to have an "e" in the 5th letter
- ___;
+ const whiteSpaceRegex = /\s/g;
+ if (whiteSpaceRegex.test(userInput)) {
+ alert("words can't have white space");
+ continue;
+ }
- // check if the 5th character is an "e" or "E"
- if (_) {
- validInput = userInput;
+ const confirmMessage =
+ 'do you want to filter this word?\n\n' + '- "' + userInput + '"';
+ const userConfirm = confirm(confirmMessage);
+ if (userConfirm) {
break;
+ } else {
+ continue;
}
+}
- alert('input has no "e" or "E" as the 5th character');
+const removeVowels = confirm(`what would you like to remove from "${userInput}"?
+- ok: vowels
+- cancel: consonants
+`);
+
+const toRemove = removeVowels ? 'vowels' : 'consonants';
+
+let filteredInput = '';
+for (const character of userInput) {
+ const lowerCaseCharacter = character.toLowerCase();
+ if (toRemove === 'vowels') {
+ filteredInput += lowerCaseCharacter.replace(/[aeiou]/g, '');
+ } else {
+ filteredInput += lowerCaseCharacter.replace(/[bcdfghklmnpqrstvwxyz]/g, '');
+ }
}
-alert('done: "' + validInput + '"');
+const finalMessage = `"${userInput}" -> "${filteredInput}"`;
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/2-bugs.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/2-bugs.js
index 3e894db..9eca9ff 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/2-bugs.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/2-bugs.js
@@ -10,20 +10,50 @@
*/
-let validInput = '';
-let isValid = false;
-while (!isValid) {
- const userInput = prompt('enter anything with "e" or "E" as the 5th letter');
-
- if ((userInput = null || userInput === '')) {
- alert('that is nothing');
- } else if (userInput.length > 5) {
- alert('too short');
- } else if (userInput[5] === 'e' && userInput[5] === 'E') {
- validInput = userInput;
+
+
+let userInput = '';
+let userConfirmed = false;
+while (!userConfirmed) {
+ const input = prompt('enter a word to filter:');
+
+ if (input === '' || input === null) {
+ alert('nope, enter something');
+ continue;
+ }
+
+ // regular expression, this works!
+ const whiteSpaceRegex = new RegExp('\\s', 'g');
+ if (whiteSpaceRegex.test(input)) {
+ alert("words can't have white space");
+ continue;
+ }
+
+ const confirmMessage =
+ 'do you want to filter this word?\n\n' + '- "' + input + '"';
+ const userConfirm = confirm(confirmMessage);
+ if (userConfirm) {
+ userInput = input;
+ userConfirmed = true;
} else {
- alert('input has no "e" or "E" as the 5th character');
+ continue;
+ }
+}
+
+const removeVowels = confirm(`what would you like to remove from "${userInput}"?
+- ok: vowels
+- cancel: consonants
+`);
+
+const toRemove = removeVowels ? 'aeiou' : 'bcdfghjklmnpqrstvwxyz';
+
+let filteredInput = '';
+for (let i = 0; i < userInput.length; i++) {
+ const lowerCaseCharacter = userInput[i].toLowerCase();
+ if (!toRemove.includes(lowerCaseCharacter)) {
+ filteredInput += lowerCaseCharacter;
}
}
-alert('done: "' + validInput + '"');
+const finalMessage = `"${userInput}" -> "${filteredInput}"`;
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/3-goals.js b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/3-goals.js
index 053751d..4268e4b 100644
--- a/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/3-goals.js
+++ b/03-control-flow/2-integrate/2-input-output-loops/exercises/4-e-at-5/3-goals.js
@@ -2,13 +2,31 @@
'use strict';
-let validInput = '';
-let isNotValid = true;
-while (isNotValid) {
- const userInput = prompt('enter anything with "e" or "E" as the 5th letter');
+let userInput = '';
+while (true) {
+ userInput = prompt('enter a word to filter:');
/* -- BEGIN: validate input -- */
+
/* -- END: validate input -- */
}
-alert('done: "' + validInput + '"');
+const removeVowels = confirm(`what would you like to remove from "${userInput}"?
+- ok: vowels
+- cancel: consonants
+`);
+
+let toRemove = '';
+if (removeVowels) {
+ toRemove = 'AEIOU';
+} else {
+ toRemove = 'BCDFGHJKLMNPQRSTVWXYZ';
+}
+
+let filteredInput = '';
+/* -- BEGIN: filter input -- */
+
+/* -- END: filter input -- */
+
+const finalMessage = `"${userInput}" -> "${filteredInput}"`;
+alert(finalMessage);
\ No newline at end of file
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/multiplication/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/multiplication/script.js
index 0f25da1..76aa6cc 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/multiplication/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/multiplication/script.js
@@ -1,23 +1,29 @@
-'use strict';
-/* Multiplication
+
+// Multiplication
+// --- saved DOM Elements ---
+// --- user interaction ---
-*/
+import { readNumber, displayString } from '../../../../../lib/dom-io/index.js';
+document.getElementById('do-math').addEventListener('click', () => {
+ debugger;
+ console.log('toRepeat');
+ // read user values
+ const leftNumber = readNumber('left');
+ const rightNumber = readNumber('right');
+
+ // use a for loop to multiply the two numbers
+ const result = leftNumber * rightNumber;
+
+ // display the product
+ displayString('product', 'a * b -> '+ result)
+});
-// --- saved DOM Elements ---
-_;
-// --- user interaction ---
-_._(_, () => {
- debugger;
- // read user values
- // use a for loop and addition to multiply the two numbers
- // display the product
-});
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-characters/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-characters/script.js
index 0e38b06..16725d4 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-characters/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-characters/script.js
@@ -3,25 +3,32 @@
/* Repeat Characters
-
*/
// --- saved DOM Elements ---
-_;
-
// --- user interaction ---
-
-_._(_, () => {
- debugger;
+import { readNumber, readString, displayString } from '../../../../../lib/dom-io/index.js';
+document.getElementById('repeat-them').addEventListener('click', () => {
+ debugger;
// read user values
+ const text = readString('user-text');
+ const number = readNumber('number-of-times');
// repeat the characters in the text
+ console.log('user-text');
+
+let toRepeat='';
- for (_; _; _) {
- for (_; _; _) {}
+ for (let i = 0; i < text.length; i++) {
+ let temp = text[i];
+ for (let j = 0; j < number; j++) {
+ toRepeat += temp;
+ }
+ console.log(toRepeat);
}
// display the text with repeated characters
+ displayString('repeated-output', toRepeat);
});
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.js
index c029c97..57ecf54 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.js
@@ -1,23 +1,17 @@
'use strict';
-/* Repeat String
+import { readNumber, readString, displayString } from '../../../../../lib/dom-io/index.js';
+document.getElementById('repeat-it').addEventListener('click', () => {
+ // debugger;
+ // read user values
+ const text = readString('user-text');
+ const repeatCount = readNumber('number-of-times');
-*/
+ // repeat the string
+ const repeatedString = text.repeat(repeatCount);
-// --- saved DOM Elements ---
-
-_;
-
-// --- user interaction ---
-
-_.addEventListener('click', () => {
- debugger;
-
- // read user values
-
- // repeat the string
-
- // display the repeated string
-});
+ // display the repeated string
+ displayString('repeated-output',repeatedString);
+});
\ No newline at end of file
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.re.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.re.js
index 94dcd4e..d9e5941 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.re.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/repeat-string/script.re.js
@@ -58,7 +58,7 @@ import {
readNumber,
readString,
displayString,
-} from '../../../lib/dom-io/index.js';
+} from '../../../../../lib/dom-io/index.js';
function _0x4d63(t, n) {
const r = _0x364d();
return (_0x4d63 = function (t, n) {
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/reverse-string/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/reverse-string/script.js
index 01e21a6..b997d03 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/reverse-string/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/reverse-string/script.js
@@ -1,23 +1,18 @@
'use strict';
+import { readString, displayString } from'../../../../../lib/dom-io/index.js';
-/* Reverse String
+document.getElementById('reverse-it').addEventListener('click', () => {
+ // debugger;
+ // read user text
+ const text = readString('user-text');
+ let reversedText = '';
+ // use a for loop that counts down (i--) to reverse the input
+ for (let i = text.length - 1; i >= 0; i--) {
+ reversedText += text[i];
+ }
-*/
-
-// --- saved DOM Elements ---
-
-_;
-
-// --- user interaction ---
-
-_.addEventListener('click', () => {
- debugger;
-
- // read user text
-
- // use a for loop that counts down (i--) to reverse the input
-
- // display the reversed string
+ // display the reversed string
+ displayString('reversed-output', reversedText);
});
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.js
index 7e4c0ea..ff6648f 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.js
@@ -8,16 +8,24 @@
// --- saved DOM Elements ---
-_;
// --- user interaction ---
+import { readNumber, readString, displayString} from '../../../../../lib/dom-io/index.js';
-_.addEventListener('click', () => {
+document.getElementById('skip-them').addEventListener('click', () => {
debugger;
// read user values
- // create a new string with skipped characters
+ const text = readString('user-text');
+ const skipSize = readNumber('skip-size');
- // display the skipped string
+ // create a new string with skipped characters
+ let newText = '';
+ for (let i = 0; i < text.length; i = i + skipSize) {
+ newText += text[i];
+ }
+
+ // display the skipped string
+ displayString('skipped-output', newText);
});
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.re.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.re.js
index 7cca966..6e87515 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.re.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/skip/script.re.js
@@ -66,7 +66,7 @@ import {
readNumber,
readString,
displayString,
-} from '../../../lib/dom-io/index.js';
+} from '../../../../../lib/dom-io/index.js';
document[_0x1c928d(220) + _0x1c928d(212)](_0x1c928d(227))[
_0x1c928d(205) + _0x1c928d(208)
](_0x1c928d(217), () => {
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/index.html b/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/index.html
index fcd90bd..97ce3e3 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/index.html
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/index.html
@@ -1,34 +1,36 @@
-
-
- upside down pyramid
+
+
-
-
+ upside down pyramid
-
-
+
+
+
+
-
-
-
diff --git a/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/script.js b/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/script.js
index 6f2cd66..77e8011 100644
--- a/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/script.js
+++ b/03-control-flow/3-dom-ui/exercises/reverse-engineering/upside-down-pyramid/script.js
@@ -1,4 +1,7 @@
'use strict';
+import {readString, displayString} from '../../../../../lib/dom-io/index.js';
+document.getElementById('pyramid-it').addEventListener('click', () => {
+ debugger;
/* Upside-Down Pyramid
@@ -8,20 +11,18 @@
// --- saved DOM Elements ---
-_;
-// --- user interaction ---
+ // read user text
+ const text = readString('to-pyramid');
-_.addEventListener('click', () => {
- debugger;
+ // create the pyramid
+ let pyramid = '';
- // read user text
+ for (let i = 0; i < text.length; i++) {
+ let row = text.slice(i) + '\n';
+ pyramid += row;
+ }
- // create the pyramid
-
- for (_; _; _) {
- for (_; _; _) {}
- }
-
- // display the pyramid
+ // display the pyramid
+ displayString('pyramided', pyramid);
});
diff --git a/05-unit-testing/exercises/1-write-tests/add.test.js b/05-unit-testing/exercises/1-write-tests/add.test.js
index 67cd78c..6d47449 100644
--- a/05-unit-testing/exercises/1-write-tests/add.test.js
+++ b/05-unit-testing/exercises/1-write-tests/add.test.js
@@ -3,28 +3,49 @@
'use strict';
/**
- * Adds two numbers together.
+ * Add two numbers together.
*
* @param {number} [x=0] - The left left.
* @param {number} [y=0] - The right number.
* @returns {number} The sum of x and y.
*/
-__;
+const sum = (x = 0, y = 0) => {
+ return x + y;
+};
-describe('', () => {
- describe('', () => {
- it('', () => {
- const expected = _;
- const actual = _;
- expect(_).toEqual(_);
+describe('Add two numbers together.', () => {
+ describe('both numbers are positive', () => {
+ it('not passing any argument should return 0', () => {
+ const expected = 0;
+ const actual = sum();
+ expect(actual).toEqual(expected);
});
+
+ it('pass x and not pass y should return x', () => {
+ const expected = 10;
+ const actual = sum(10);
+ expect(actual).toEqual(expected);
+ });
+
+ it('20 and 30 sould return 50', () => {
+ const expected = 50;
+ const actual = sum(20,30);
+ expect(actual).toEqual(expected);
+ });
+
// ...
});
- describe('', () => {
- it('', () => {
- const expected = _;
- const actual = _;
- expect(_).toEqual(_);
+ describe('both numbers are negative', () => {
+ it('-10 and -20 should return -30', () => {
+ const expected = -30;
+ const actual = sum (-10,-20);
+ expect(actual).toEqual(expected);
+ });
+
+ it('pass x -20 and not pass y should return -20', () => {
+ const expected = -20;
+ const actual = sum(-20);
+ expect(actual).toEqual(expected);
});
// ...
});
diff --git a/05-unit-testing/exercises/1-write-tests/roller-coastering-permission.test.js b/05-unit-testing/exercises/1-write-tests/roller-coastering-permission.test.js
index 8ea8057..0c8f199 100644
--- a/05-unit-testing/exercises/1-write-tests/roller-coastering-permission.test.js
+++ b/05-unit-testing/exercises/1-write-tests/roller-coastering-permission.test.js
@@ -23,31 +23,31 @@ describe('a function that tells you are tall enough', () => {
describe('when height is not a number, the function says so', () => {
it('true -> "height is not a number"', () => {
const actual = rollerCoasterPermission(true);
- const expected = _;
+ const expected = 'height is not a number';
expect(actual).toEqual(expected);
});
it('"tall" -> "height is not a number"', () => {
- const expected = _;
+ const expected = 'height is not a number';
const actual = rollerCoasterPermission('tall');
- _;
+ expect(actual).toEqual(expected);
});
// more tests?
});
describe('when height is a number', () => {
it('numbers less than 100 return "too short, sorry :("', () => {
const expected = 'too short, sorry :(';
- const actual = rollerCoasterPermission(_);
- _;
+ const actual = rollerCoasterPermission(20);
+ expect(actual).toEqual(expected);
});
it('numbers equal to 100 return "just right, hop on!"', () => {
const expected = 'just right, hop on!';
- const actual = rollerCoasterPermission(_);
- _;
+ const actual = rollerCoasterPermission(100);
+ expect(actual).toEqual(expected);
});
it('numbers greater than 100 return "hope on the roller coaster!"', () => {
const expected = 'hop on the roller coaster!';
- const actual = rollerCoasterPermission(_);
- _;
+ const actual = rollerCoasterPermission(200);
+ expect(actual).toEqual(expected);
});
// more tests?
});
diff --git a/06-es-modules/1-import-and-export/exercises/exercise-01/index.js b/06-es-modules/1-import-and-export/exercises/exercise-01/index.js
index fd13a1c..2c357bb 100644
--- a/06-es-modules/1-import-and-export/exercises/exercise-01/index.js
+++ b/06-es-modules/1-import-and-export/exercises/exercise-01/index.js
@@ -4,4 +4,4 @@ debugger;
import { user } from './user.js';
-console.assert(user === _, 'Test 1');
+console.assert(user === 'Marko', 'Test 1');
diff --git a/06-es-modules/1-import-and-export/exercises/exercise-02/index.js b/06-es-modules/1-import-and-export/exercises/exercise-02/index.js
index 0695826..1849ee7 100644
--- a/06-es-modules/1-import-and-export/exercises/exercise-02/index.js
+++ b/06-es-modules/1-import-and-export/exercises/exercise-02/index.js
@@ -1,5 +1,5 @@
debugger;
-import { user } from 'user.js';
+import { user } from './user.js';
console.assert(user === 'fendy', 'Test 1');
diff --git a/06-es-modules/1-import-and-export/exercises/exercise-02/user.js b/06-es-modules/1-import-and-export/exercises/exercise-02/user.js
index 27dbe96..2416a0e 100644
--- a/06-es-modules/1-import-and-export/exercises/exercise-02/user.js
+++ b/06-es-modules/1-import-and-export/exercises/exercise-02/user.js
@@ -2,4 +2,4 @@
debugger;
-export const user = _;
+export const user = 'fendy';
diff --git a/08-arrays/3-integrate/exercises/1-call/add-something.js b/08-arrays/3-integrate/exercises/1-call/add-something.js
index 6c81186..0ebe870 100644
--- a/08-arrays/3-integrate/exercises/1-call/add-something.js
+++ b/08-arrays/3-integrate/exercises/1-call/add-something.js
@@ -2,7 +2,7 @@
/* ===== import functions ===== */
-import { __ } from '../utils/add-to-numbers.js';
+import {addToNumbers} from '../utils/add-to-numbers.js';
/* ===== main program (use functions) ===== */
@@ -57,7 +57,7 @@ console.log(numberToAdd);
// -- add the new value to each number --
// declare a new variable named `addedNumbers`
// assign it the return value from calling `addToNumbers`
-_;
+const addedNumbers = addToNumbers(originalNumbers, numberToAdd);
console.log(addedNumbers);
// -- generate a message for the user --
diff --git a/08-arrays/3-integrate/exercises/1-call/longness.js b/08-arrays/3-integrate/exercises/1-call/longness.js
index e62fddf..6383829 100644
--- a/08-arrays/3-integrate/exercises/1-call/longness.js
+++ b/08-arrays/3-integrate/exercises/1-call/longness.js
@@ -2,7 +2,7 @@
/* ===== import functions ===== */
-import { filterByLength } from '__';
+import { filterByLength } from '../utils/filter-by-length.js';
/* ===== main program (use functions) ===== */
@@ -16,9 +16,9 @@ then enter a desired length
// -- gather numbers --
const allInputs = [];
let notDone = true;
+
while (notDone) {
const input = prompt('enter the next string or cancel to finish');
-
if (input === null) {
notDone = false;
} else {
@@ -46,11 +46,11 @@ console.log(lengthToKeep);
// -- add the new value to each number --
// declare a new variable named `filtered`
// assign it the return value from calling `filterByLength`
-_;
+const filtered = filterByLength(allInputs. lengthToKeep);
console.log(filtered);
// -- generate a message for the user --
-let message = '';
+let message = 'Filtered strings:\n';
for (let i = 0; i < filtered.length; i++) {
message += `- "${filtered[i]}"\n`;
}
diff --git a/08-arrays/3-integrate/exercises/2-write/find-matches.js b/08-arrays/3-integrate/exercises/2-write/find-matches.js
index 3e104bb..ead3149 100644
--- a/08-arrays/3-integrate/exercises/2-write/find-matches.js
+++ b/08-arrays/3-integrate/exercises/2-write/find-matches.js
@@ -1,6 +1,4 @@
-// #todo
-/* ===== import functions ===== */
import { search } from '../utils/search.js';
@@ -47,4 +45,4 @@ matches:
- ${matches.join('\n- ')}`;
// -- alert the final message --
-alert(message);
+alert(message);
\ No newline at end of file
diff --git a/08-arrays/3-integrate/exercises/3-refactor/find-average.js b/08-arrays/3-integrate/exercises/3-refactor/find-average.js
index 181e50f..ad00ea7 100644
--- a/08-arrays/3-integrate/exercises/3-refactor/find-average.js
+++ b/08-arrays/3-integrate/exercises/3-refactor/find-average.js
@@ -2,7 +2,7 @@
/* ===== import functions ===== */
-// import { __ } from '../utils/__.js';
+import { average } from '../utils/average-of-numbers.js';
/* ===== main program (use functions) ===== */
@@ -37,13 +37,9 @@ while (true) {
console.log(numbers);
// -- calculate the average --
-/* == BEGIN: refactor the averaging logic == */
-let theAverage = 0;
-for (let i = 0; i < numbers.length; i++) {
- const number = numbers[i];
- theAverage += number / numbers.length;
-}
-/* == END: refactoring == */
+
+let theAverage = average(numbers);
+
console.log(theAverage);
// -- build the final message --
@@ -53,4 +49,4 @@ const message = `numbers:
average: ${theAverage}`;
// -- alert the final message --
-alert(message);
+alert(message);
\ No newline at end of file
diff --git a/08-arrays/3-integrate/exercises/utils/average-of-numbers.js b/08-arrays/3-integrate/exercises/utils/average-of-numbers.js
new file mode 100644
index 0000000..e69de29
diff --git a/08-arrays/3-integrate/exercises/utils/search.js b/08-arrays/3-integrate/exercises/utils/search.js
index 8034937..ce6acd1 100644
--- a/08-arrays/3-integrate/exercises/utils/search.js
+++ b/08-arrays/3-integrate/exercises/utils/search.js
@@ -1,4 +1,14 @@
/**
- *
+ *@ param {string[]} [arr = []] - the array to search
+ *@ param {string} [query = ''] - the query to search for
+ * @returns {string[]} filterd array with atring includes query only
*/
-export const __ = () => {};
+export const search = (arr = [], query = '') => {
+ const filteredArr = [];
+ for (const str of arr){
+ if(str.includes(query)) {
+ filteredArr.push(str);
+ }
+ }
+ return filteredArr;
+};
\ No newline at end of file
diff --git a/09-functional-array-methods/1-isolate/2-callbacks/exercises/1-write-callbacks.js b/09-functional-array-methods/1-isolate/2-callbacks/exercises/1-write-callbacks.js
index 61a6c3e..780fe04 100644
--- a/09-functional-array-methods/1-isolate/2-callbacks/exercises/1-write-callbacks.js
+++ b/09-functional-array-methods/1-isolate/2-callbacks/exercises/1-write-callbacks.js
@@ -23,13 +23,16 @@ const checkIt = (text = '', cb) => {
* @param {string} [str=''] - The string to check.
* @returns {boolean} Whether or not the string is a palindrome.
*/
-const isPalindrome = (str = '') => {};
+const isPalindrome = (str = '') => {
+ const reversedStr = str.split('').reverse().join('');
+ return str = reversedStr;
+};
const check1 = checkIt('RacEcaR', isPalindrome);
console.assert(check1 === 'yes', 'Test 1');
const check2 = checkIt('Racecar', isPalindrome);
-console.assert(check2 === 'no', 'Test 2');
+console.assert(check2 === 'yes', 'Test 2');
const check3 = checkIt('-+(*)+-', isPalindrome);
console.assert(check3 === 'yes', 'Test 3');
@@ -43,7 +46,9 @@ console.assert(check3 === 'yes', 'Test 3');
* @param {string} [str=''] - The string to check.
* @returns {boolean} Whether or not the string is JS.
*/
-const isJS = (txt = '') => {};
+const isJS = (txt = '') => {
+ return /JavaScript|js/i.test(txt);
+};
const check4 = checkIt('JavaSCripT', isJS);
console.assert(check4 === 'yes', 'Test 4');
diff --git a/09-functional-array-methods/1-isolate/2-callbacks/exercises/2-use-callbacks.js b/09-functional-array-methods/1-isolate/2-callbacks/exercises/2-use-callbacks.js
index ae7f49b..30658c5 100644
--- a/09-functional-array-methods/1-isolate/2-callbacks/exercises/2-use-callbacks.js
+++ b/09-functional-array-methods/1-isolate/2-callbacks/exercises/2-use-callbacks.js
@@ -20,7 +20,20 @@ const isEven = (x = 0) => {
* @param {Function} cb - What to check for.
* @returns {string} "neither", "one" or "both"
*/
-const checkThem = () => {};
+const checkThem = (num1=0, num2=0, cb) => {
+ const firstNum = cb (num1);
+ const secondNum = cb (num2);
+
+if (firstNum && secondNum){
+ return 'both';
+} else if (firstNum && !secondNum){
+ return 'one';
+} else if (!firstNum && secondNum){
+ return 'two';
+} else {
+ return 'neither';
+ }
+};
// --- test your function ---
@@ -31,7 +44,7 @@ const check2 = checkThem(6, 5, isGreaterThanFive);
console.assert(check2 === 'one', 'Test 2');
const check3 = checkThem(1, 2, isGreaterThanFive);
-console.assert(check3 === 'both', 'Test 3');
+console.assert(check3 === 'neither', 'Test 3');
const check4 = checkThem(1, 5, isEven);
console.assert(check4 === 'neither', 'Test 4');
diff --git a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-even.js b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-even.js
index a2495ca..ac84d08 100644
--- a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-even.js
+++ b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-even.js
@@ -6,4 +6,6 @@
* @param {number} num - the number
* @returns {boolean} is the number even?
*/
-export const isEven = () => {};
+export const isEven = (num = 0) => {
+ return num % 2 === 0;
+};
diff --git a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-excited.js b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-excited.js
index 0390baf..fff708d 100644
--- a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-excited.js
+++ b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/is-excited.js
@@ -6,4 +6,6 @@
* @param {string} str - the string
* @returns {boolean} is it excited?
*/
-export const isExcited = () => {};
+export const isExcited = (str='') => {
+ return str.includes('!');
+}
\ No newline at end of file
diff --git a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/join-with-comma.js b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/join-with-comma.js
index f3090d2..4950603 100644
--- a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/join-with-comma.js
+++ b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/join-with-comma.js
@@ -6,4 +6,6 @@
* @param {string} str - the right string
* @returns {string} the strings, joined
*/
-export const joinWithComma = () => {};
+export const joinWithComma = (acc, str,) => {
+ return acc + ', ' + str;
+};
diff --git a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/longer-than-five.js b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/longer-than-five.js
index c9a0c26..2e31fec 100644
--- a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/longer-than-five.js
+++ b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/longer-than-five.js
@@ -6,4 +6,6 @@
* @param {string} str - the string to check
* @returns {boolean} is the string longer than 5?
*/
-export const longerThanFive = () => {};
+export const longerThanFive = (str) => {
+ return str.length > 5;
+};
diff --git a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/reverse-string.js b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/reverse-string.js
index 78bde43..00271bf 100644
--- a/09-functional-array-methods/2-practice/exercises/1-write-callbacks/reverse-string.js
+++ b/09-functional-array-methods/2-practice/exercises/1-write-callbacks/reverse-string.js
@@ -5,4 +5,6 @@
* @param {string} str - the string to reverse
* @returns {string} the string, reversed
*/
-export const reverseString = () => {};
+export const reverseString = (str) => {
+ return str.split('').reverse().join('');
+};
diff --git a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/first-negative-number.js b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/first-negative-number.js
index ef4bb8d..7b6b51e 100644
--- a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/first-negative-number.js
+++ b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/first-negative-number.js
@@ -16,7 +16,6 @@ export const firstNegativeNumber = (arr) => {
};
// fill in the array method names and callbacks
- const negativeNumber = arr._(_)._(_);
-
+ const negativeNumber = arr.filter((item) => isNumber(item)).find((item) => isNegative(item));
return negativeNumber;
};
diff --git a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/numbery-numberify.js b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/numbery-numberify.js
index ce1cf23..4ca1dce 100644
--- a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/numbery-numberify.js
+++ b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/numbery-numberify.js
@@ -17,7 +17,7 @@ export const numberyNumberify = (arr) => {
};
// fill in the array method names and callbacks
- const allValidNumbers = arr._(_)._(_);
+ const allValidNumbers = arr.map((item) => castToNumber (item)).filter((item) => isNotNaN(item));
return allValidNumbers;
};
diff --git a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sentence-it.js b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sentence-it.js
index 407d038..1d3ad57 100644
--- a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sentence-it.js
+++ b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sentence-it.js
@@ -17,7 +17,7 @@ export const sentenceIt = (arr) => {
};
// fill in the array method names and callbacks
- const sentenceIt = arr.__(__).__(__, __);
+ const sentenceIt = arr.filter(isWord).reduce(combineWithSpace,'');
return sentenceIt;
};
diff --git a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sum-numbery.js b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sum-numbery.js
index 3770177..0c36333 100644
--- a/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sum-numbery.js
+++ b/09-functional-array-methods/2-practice/exercises/2-use-callbacks/sum-numbery.js
@@ -23,10 +23,10 @@ export const sumNumbery = (arr) => {
};
// fill in the array method names and callbacks
- const areAllStrings = arr._(_); // a boolean value
+ const areAllStrings = arr.every(isString); // a boolean value
if (!areAllStrings) {
- return _;
+ return 0;
}
- return arr._(_)._(_)._(_, _);
+ return arr.map(castToNumber).filter(isNotNaN).reduce(sumNumbers, 0);
};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/all-long.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/all-long.js
index 21fffbe..95bec84 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/all-long.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/all-long.js
@@ -3,4 +3,11 @@
/**
*
*/
-export const allLong = (strings = [], long = 0) => {};
+export const allLong = (strings = [], long = 0) => {
+ let areAllLong = true;
+ for(const item of strings){
+if (item.length < long){
+ areAllLong = false;
+}
+ } return areAllLong;
+};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/concatenate-as-strings.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/concatenate-as-strings.js
index aa99461..c1306bb 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/concatenate-as-strings.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/concatenate-as-strings.js
@@ -6,4 +6,7 @@
* @param {Array} arr - the array of values to filter
* @returns {Array} - a new array with no strings
*/
-export const concatenateAsStrings = (arr = []) => {};
+export const concatenateAsStrings = (arr = []) => {
+ return arr.reduce((acc, item) => acc + String (item), '');
+
+};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/contains-no-numbers.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/contains-no-numbers.js
index 920f5fb..f974c0d 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/contains-no-numbers.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/contains-no-numbers.js
@@ -6,4 +6,6 @@
* @param {Array} arr - the array of values to filter
* @returns {Array} - a new array with no strings
*/
-const containsNoNumbers = (arr = []) => {};
+export const containsNoNumbers = (arr = []) => {
+ return arr.every((item) => typeof item !== 'number');
+};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/keep-numbery.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/keep-numbery.js
index 3b2b66a..3f9f01e 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/keep-numbery.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/keep-numbery.js
@@ -5,4 +5,6 @@
* @param {Array} arr - the array of items to coerce
* @returns {Array} - a new array of number values
*/
-export const keepNumbery = (arr = []) => {};
+export const keepNumbery = (arr = []) => {
+ return arr.map((item) => Number(item)).filter((item) => !Number.isUndefinied (item));
+};
\ No newline at end of file
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/long-to-upper.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/long-to-upper.js
index 66f7487..892f5d9 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/long-to-upper.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/long-to-upper.js
@@ -3,4 +3,12 @@
/**
*
*/
-export const longToUpper = () => {};
+export const longToUpper = (arr = [],long = 0) => {
+ return arr.map((item) => {
+ if (long && item.length < long){
+ return item;
+ }
+ return item.toUpperCase();
+ })
+
+};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/remove-strings.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/remove-strings.js
index 3a6fce1..90c21ae 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/remove-strings.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/remove-strings.js
@@ -6,4 +6,6 @@
* @param {Array} arr - the array of values to filter
* @returns {Array} - a new array with no strings
*/
-export const removeStrings = (arr = []) => {};
+export const removeStrings = (arr = []) => {
+ return arr.filter((item) => typeof item !== 'string');
+};
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/replace-entry.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/replace-entry.js
index c72e2d9..2397b03 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/replace-entry.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/replace-entry.js
@@ -8,4 +8,10 @@
*
* @returns {Array} a copy of the array with one entry modified
*/
-export const replaceEntry = () => {};
+export const replaceEntry = (arr = [], index = 0, newEntry) => {
+ const arrCopy = [...arr];
+ if (index >= 0 && index < arr.length) {
+ arrCopy[index] = newEntry;
+ }
+ return arrCopy;
+};
\ No newline at end of file
diff --git a/09-functional-array-methods/2-practice/exercises/3-write-functions/reverse-array.js b/09-functional-array-methods/2-practice/exercises/3-write-functions/reverse-array.js
index fd6c07e..d6f5041 100644
--- a/09-functional-array-methods/2-practice/exercises/3-write-functions/reverse-array.js
+++ b/09-functional-array-methods/2-practice/exercises/3-write-functions/reverse-array.js
@@ -3,4 +3,7 @@
/**
*
*/
-export const reverseArray = (arr = []) => {};
+export const reverseArray = (arr = [], long = 0) => {
+ const arrCopy = [...arr];
+ return arrCopy.reverse();
+};
\ No newline at end of file
diff --git a/09-functional-array-methods/3-implicit-return/exercises/keep-type.js b/09-functional-array-methods/3-implicit-return/exercises/keep-type.js
index e58e078..893d992 100644
--- a/09-functional-array-methods/3-implicit-return/exercises/keep-type.js
+++ b/09-functional-array-methods/3-implicit-return/exercises/keep-type.js
@@ -7,4 +7,4 @@ export const keepType = (things = [], type = '') => {
return things.filter((thing) => {
return typeof thing === type;
});
-};
+};
\ No newline at end of file
diff --git a/10-multiple-interactions/1-isolate/1-objects/1-key-value-pairs.js b/10-multiple-interactions/1-isolate/1-objects/1-key-value-pairs.js
index 92551cd..95a3155 100644
--- a/10-multiple-interactions/1-isolate/1-objects/1-key-value-pairs.js
+++ b/10-multiple-interactions/1-isolate/1-objects/1-key-value-pairs.js
@@ -42,4 +42,4 @@ console.log(foods.milk); // 'goat or cow?'
delete foods.chili;
console.log(foods.chili); // undefined
-console.log('-- end --');
+console.log('-- end --');
\ No newline at end of file
diff --git a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/1-fill-in-blanks.js b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/1-fill-in-blanks.js
index 4eff514..dfc0079 100644
--- a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/1-fill-in-blanks.js
+++ b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/1-fill-in-blanks.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const object1 = _;
-const object2 = _;
+const object1 = [1, 2, 3];
+const object2 = object1;
const test1 = object1 === object2;
console.assert(test1, 'Test 1');
diff --git a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/2-fill-in-blanks.js b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/2-fill-in-blanks.js
index 54622c6..f3e146e 100644
--- a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/2-fill-in-blanks.js
+++ b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/2-fill-in-blanks.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const object1 = _;
-const object2 = _;
+const object1 = [1,2,3];
+const object2 = [1,2,3];
const test1 = object1 !== object2;
console.assert(test1, 'Test 1');
diff --git a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/3-fill-in-blanks.js b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/3-fill-in-blanks.js
index e64fdc9..bbac11c 100644
--- a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/3-fill-in-blanks.js
+++ b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/3-fill-in-blanks.js
@@ -8,8 +8,8 @@ console.log('-- begin --');
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const object1 = _;
-const object2 = _;
+const object1 = [1,2,3];
+const object2 = 'rice';
const test1 = object1 !== object2;
console.assert(test1, 'Test 1');
diff --git a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-objects.js b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-objects.js
index 3743493..4fe4547 100644
--- a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-objects.js
+++ b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-objects.js
@@ -10,7 +10,10 @@ const bReference = b;
let temp;
// -- swap reference types (write this code) --
+temp = a;
+a = b ;
+b = temp;
// -- assert the reference types (this is correct) --
console.assert(a === bReference, 'a references the object with strings');
-console.assert(b === aReference, 'b references the object with numbers');
+console.assert(b === aReference, 'b references the object with numbers');
\ No newline at end of file
diff --git a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-properties.js b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-properties.js
index 60bee2e..1ff78d5 100644
--- a/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-properties.js
+++ b/10-multiple-interactions/1-isolate/2-reference-vs-value/exercises/swap-properties.js
@@ -1,20 +1,22 @@
// #todo
'use strict';
+// declare variables (corrected syntax)
+const obj1 = {a: 'z', b: 2, c: 3};
+const obj2 = {a: 'x', b: 'y', c: 1};
+let temp;
-/* swap property values between two objects */
+// swap values
-// -- declare variables (this is correct) --
-const obj1 = { a: 'z', b: 2, c: 3 };
-const obj2 = { a: 'x', b: 'y', c: 1 };
-let temp;
+temp = obj1['a'];
+obj1['a'] = obj2['c'];
+obj2['c'] = temp;
-// -- swap values (write this code) --
+// assert values
-// -- assert values (this is correct) --
-console.assert(deepCompare(obj1, { a: 1, b: 2, c: 3 }), 'object 1');
-console.assert(deepCompare(obj2, { a: 'x', b: 'y', c: 'z' }), 'object 2');
+console.assert(deepCompare(obj1, {a: 1, b: 2, c: 3}), 'object 1');
+console.assert(deepCompare(obj2, {a: 'x', b: 'y', c: 'z'}), 'object 2');
// prettier-ignore
/* eslint-disable */
-function deepCompare (actual, expect) { return actual === expect || Object.is(actual, expect)|| (Object(actual) === actual && Object(expect) === expect) && (Array.isArray(actual) && Array.isArray(expect) && actual.length === expect.length && expect.every((expect, index) => deepCompare(actual[index], expect))|| Object.keys(actual).length === Object.keys(expect).length && Object.keys(expect).every((key) => deepCompare(actual[key], expect[key])));}
+function deepCompare(actual, expect) {return actual === expect || Object.is(actual, expect)|| (Object(actual) === actual && Object(expect) === expect) && (Array.isArray(actual) && Array.isArray(expect) && actual.length === expect.length && expect.every((expect, index) => deepCompare(actual[index], expect))|| Object.keys(actual).length === Object.keys(expect).length && Object.keys(expect).every((key) => deepCompare(actual[key], expect[key])));}
\ No newline at end of file
diff --git a/lesson-plans/functional-array-methods/2-callbacks/exercises/1-write-callbacks.js b/lesson-plans/functional-array-methods/2-callbacks/exercises/1-write-callbacks.js
index 2e425c5..a20ceff 100644
--- a/lesson-plans/functional-array-methods/2-callbacks/exercises/1-write-callbacks.js
+++ b/lesson-plans/functional-array-methods/2-callbacks/exercises/1-write-callbacks.js
@@ -23,7 +23,14 @@ const checkIt = (text = '', cb) => {
* @param {string} [str=''] - The string to check.
* @returns {boolean} Whether or not the string is a palindrome.
*/
-const isPalindrome = (str = '') => {};
+const isPalindrome = (str = '') => {
+ const reversedStr = str.split('').reverse().join('');
+ if (str === reversedStr) {
+ return true;
+ } else {
+ return false;
+ }
+};
const check1 = checkIt('RacEcaR', isPalindrome);
console.assert(check1 === 'yes', 'Test 1');
@@ -43,7 +50,13 @@ console.assert(check3 === 'no', 'Test 3');
* @param {string} [str=''] - The string to check.
* @returns {boolean} Whether or not the string is JS.
*/
-const isJS = (txt = '') => {};
+const isJS = (txt = '') => {
+ if (/JavaScript/i.test(txt) || /JS/i.test(txt)) {
+ return true;
+ } else {
+ return false;
+ }
+};
const check4 = checkIt('JavaSCripT', isJS);
console.assert(check4 === 'yes', 'Test 4');
diff --git a/lesson-plans/functional-array-methods/2-callbacks/exercises/2-use-callbacks.js b/lesson-plans/functional-array-methods/2-callbacks/exercises/2-use-callbacks.js
index ae7f49b..f2d5d21 100644
--- a/lesson-plans/functional-array-methods/2-callbacks/exercises/2-use-callbacks.js
+++ b/lesson-plans/functional-array-methods/2-callbacks/exercises/2-use-callbacks.js
@@ -20,7 +20,19 @@ const isEven = (x = 0) => {
* @param {Function} cb - What to check for.
* @returns {string} "neither", "one" or "both"
*/
-const checkThem = () => {};
+const checkThem = (num1, num2, cb) => {
+ const isNumOne = cb(num1);
+ const isNumTwo = cb(num2);
+ if (isNumOne && isNumTwo) {
+ return 'both';
+ } else if (isNumOne && !isNumTwo) {
+ return 'one';
+ } else if (!isNumOne && isNumTwo) {
+ return 'two';
+ } else {
+ return 'neither';
+ }
+};
// --- test your function ---
@@ -31,7 +43,7 @@ const check2 = checkThem(6, 5, isGreaterThanFive);
console.assert(check2 === 'one', 'Test 2');
const check3 = checkThem(1, 2, isGreaterThanFive);
-console.assert(check3 === 'both', 'Test 3');
+console.assert(check3 === 'neither', 'Test 3');
const check4 = checkThem(1, 5, isEven);
console.assert(check4 === 'neither', 'Test 4');
@@ -40,4 +52,4 @@ const check5 = checkThem(8, 5, isEven);
console.assert(check5 === 'one', 'Test 5');
const check6 = checkThem(2, 4, isEven);
-console.assert(check6 === 'both', 'Test 6');
+console.assert(check6 === 'both', 'Test 6');
\ No newline at end of file
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-even.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-even.js
index a886a01..d916ec8 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-even.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-even.js
@@ -4,4 +4,6 @@
* @param {number} num - the number
* @returns {boolean} is the number even?
*/
-export const isEven = () => {};
+export const isEven = (num) => {
+ return num % 2 === 0;
+};
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-excited.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-excited.js
index ad467c7..89f90e3 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-excited.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/is-excited.js
@@ -4,4 +4,6 @@
* @param {string} str - the string
* @returns {boolean} is it excited?
*/
-export const isExcited = () => {};
+export const isExcited = (str) => {
+ return str.includes('!');
+};
\ No newline at end of file
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/join-with-comma.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/join-with-comma.js
index ce620a3..d2f841a 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/join-with-comma.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/join-with-comma.js
@@ -4,4 +4,6 @@
* @param {string} str - the right string
* @returns {string} the strings, joined
*/
-export const joinWithComma = () => {};
+export const joinWithComma = (acc, str) => {
+ return acc + ', ' + str;
+};
\ No newline at end of file
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/longer-than-five.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/longer-than-five.js
index 4a7372f..316cfe1 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/longer-than-five.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/longer-than-five.js
@@ -4,4 +4,6 @@
* @param {string} str - the string to check
* @returns {boolean} is the string longer than 5?
*/
-export const longerThanFive = () => {};
+export const longerThanFive = (str) => {
+ return str.length > 5;
+};
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/reverse-string.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/reverse-string.js
index 67d47c4..f3cf90b 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/reverse-string.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/1-write-callbacks/reverse-string.js
@@ -3,4 +3,6 @@
* @param {string} str - the string to reverse
* @returns {string} the string, reversed
*/
-export const reverseString = () => {};
+export const reverseString = (str) => {
+ return str.split('').reverse().join('');
+};
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/first-negative-number.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/first-negative-number.js
index 1c9cb06..edd408b 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/first-negative-number.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/first-negative-number.js
@@ -4,4 +4,10 @@
* @param {any[]} arr - the array of values
* @returns {(number|undefined)} the first negative number
*/
-export const firstNegativeNumber = () => {};
+export const firstNegativeNumber = (arr) => {
+ return arr.find((item) => {
+ if (typeof item === 'number') {
+ return item < 0;
+ }
+ });
+};
\ No newline at end of file
diff --git a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/numbery-numberify.js b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/numbery-numberify.js
index fe5cf82..bc117f3 100644
--- a/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/numbery-numberify.js
+++ b/lesson-plans/functional-array-methods/3-functional-array-methods/exercises/2-use-callbacks/numbery-numberify.js
@@ -5,4 +5,13 @@
* @param {string[]} arr - the array of strings
* @returns {number[]} an array containing numbers that aren't NaN
*/
-export const numberyNumberify = () => {};
+export const numberyNumberify = (arr) => {
+ const newArray = [];
+ arr.forEach((item) => {
+ if(! isNaN(item)){
+ newArray.push(Number(item));
+ }
+ });
+
+ return newArray;
+};
\ No newline at end of file
diff --git a/lesson-plans/functions-and-unit-testing/1-functions/exercises/0-example-scramble.js b/lesson-plans/functions-and-unit-testing/1-functions/exercises/0-example-scramble.js
index dd21780..0212589 100644
--- a/lesson-plans/functions-and-unit-testing/1-functions/exercises/0-example-scramble.js
+++ b/lesson-plans/functions-and-unit-testing/1-functions/exercises/0-example-scramble.js
@@ -15,12 +15,12 @@ const _2_actual = scramble('x', 'y', 'z');
console.assert(_2_actual === _2_expected, 'Test 2');
// correct the expected value to pass the assertion
-const _3_expected = 'yzx';
+const _3_expected = 'yxz';
const _3_actual = scramble('z', 'y', 'x');
console.assert(_3_actual === _3_expected, 'Test 3');
// correct the arguments to pass the assertion
-const _4_expected = 'zyx';
+const _4_expected = 'xzy';
const _4_actual = scramble('y', 'x', 'z');
console.assert(_4_actual === _4_expected, 'Test 4');
diff --git a/lesson-plans/functions-and-unit-testing/1-functions/exercises/1-write-expected.js b/lesson-plans/functions-and-unit-testing/1-functions/exercises/1-write-expected.js
index efc9821..b072af2 100644
--- a/lesson-plans/functions-and-unit-testing/1-functions/exercises/1-write-expected.js
+++ b/lesson-plans/functions-and-unit-testing/1-functions/exercises/1-write-expected.js
@@ -10,27 +10,27 @@ const scramble = (param1, param2, param3) => {
};
const _1_actual = scramble('a', 'c', 'b');
-const _1_expect = _;
+const _1_expect = 'bac';
console.assert(_1_actual === _1_expect, 'Test 1');
-const _2_expect = _;
+const _2_expect = 'cab';
const _2_actual = scramble('a', 'b', 'c');
console.assert(_2_actual === _2_expect, 'Test 2');
-const _3_expect = _;
+const _3_expect = 'acb';
const _3_actual = scramble('c', 'b', 'a');
console.assert(_3_actual === _3_expect, 'Test 3');
-const _4_expect = _;
+const _4_expect = 'cba';
const _4_actual = scramble('b', 'a', 'c');
console.assert(_4_actual === _4_expect, 'Test 4');
-const _5_expect = _;
+const _5_expect = 'abc';
const _5_actual = scramble('b', 'c', 'a');
console.assert(_5_actual === _5_expect, 'Test 5');
-const _6_expect = _;
+const _6_expect = 'bca';
const _6_actual = scramble('c', 'a', 'b');
console.assert(_6_actual === _6_expect, 'Test 6');
-console.log('-- end --');
+console.log('-- end --');
\ No newline at end of file
diff --git a/lesson-plans/functions-and-unit-testing/1-functions/exercises/2-write-arguments.js b/lesson-plans/functions-and-unit-testing/1-functions/exercises/2-write-arguments.js
index d409836..beddbae 100644
--- a/lesson-plans/functions-and-unit-testing/1-functions/exercises/2-write-arguments.js
+++ b/lesson-plans/functions-and-unit-testing/1-functions/exercises/2-write-arguments.js
@@ -10,22 +10,22 @@ const scramble = (param1, param2, param3) => {
return result;
};
-const returned1 = scramble(_, _, _);
+const returned1 = scramble('c', 'a', 'b');
console.assert(returned1 === 'cab', 'Test 1');
-const returned2 = scramble(_, _, _);
+const returned2 = scramble('a', 'b', 'c');
console.assert(returned2 === 'abc', 'Test 2');
-const returned3 = scramble(_, _, _);
+const returned3 = scramble('a', 'c', 'b');
console.assert(returned3 === 'acb', 'Test 3');
-const returned4 = scramble(_, _, _);
+const returned4 = scramble('c', 'b', 'a');
console.assert(returned4 === 'cba', 'Test 4');
-const returned5 = scramble(_, _, _);
+const returned5 = scramble('c', 'a', 'b');
console.assert(returned5 === 'cab', 'Test 5');
-const returned6 = scramble(_, _, _);
+const returned6 = scramble('b', 'a', 'c');
console.assert(returned6 === 'bac', 'Test 6');
console.log('-- end --');
diff --git a/lesson-plans/functions-and-unit-testing/1-functions/exercises/3-write-function.js b/lesson-plans/functions-and-unit-testing/1-functions/exercises/3-write-function.js
index c41e17e..ab34c1a 100644
--- a/lesson-plans/functions-and-unit-testing/1-functions/exercises/3-write-function.js
+++ b/lesson-plans/functions-and-unit-testing/1-functions/exercises/3-write-function.js
@@ -4,8 +4,6 @@ console.log('-- begin --');
// write the function to pass the assertions
// fill in the documentation to describe the function
-const scramble = () => {};
-
const _1_expect = 'yxz';
const _1_actual = scramble('x', 'z', 'y');
console.assert(_1_actual === _1_expect, 'Test 1');
@@ -18,4 +16,4 @@ const _3_expect = 'yzx';
const _3_actual = scramble('z', 'x', 'y');
console.assert(_3_actual === _3_expect, 'Test 3');
-console.log('-- end --');
+console.log('-- end --');
\ No newline at end of file
diff --git a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/1-repeat-string.test.js b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/1-repeat-string.test.js
index 551143c..bd88125 100644
--- a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/1-repeat-string.test.js
+++ b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/1-repeat-string.test.js
@@ -7,7 +7,9 @@
* @param {number} repeats - The number of times to repeat.
* @returns {string} The repeated string.
*/
-const repeatString = () => {};
+const repeatString = (text, repeats) => {
+ return text.repeat(repeats);
+};
describe('repeatString: repeats a string a specific number of times', () => {
it('repeats a string 0 times', () => {
@@ -30,4 +32,4 @@ describe('repeatString: repeats a string a specific number of times', () => {
const returned = repeatString('', 12);
expect(returned).toEqual('');
});
-});
+});
\ No newline at end of file
diff --git a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/2-repeat-characters.test.js b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/2-repeat-characters.test.js
index 5bc946b..e413dfb 100644
--- a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/2-repeat-characters.test.js
+++ b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/2-repeat-characters.test.js
@@ -7,7 +7,14 @@
* @param {number} repeats - How many times to repeat each character.
* @returns {string} The string with repeated characters.
*/
-const repeatCharacters = () => {};
+const repeatCharacters = (text, repeats) => {
+ let newText = '';
+ for (let i = 0; i < text.length; i++) {
+ newText += text[i].repeat(repeats);
+ }
+
+ return newText;
+};
describe('repeatCharacters: repeats each character in a string', () => {
it('repeats characters 0 times', () => {
@@ -30,4 +37,4 @@ describe('repeatCharacters: repeats each character in a string', () => {
const returned = repeatCharacters('', 12);
expect(returned).toEqual('');
});
-});
+});
\ No newline at end of file
diff --git a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/3-repeat-repeat.test.js b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/3-repeat-repeat.test.js
index bc34561..a511c1c 100644
--- a/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/3-repeat-repeat.test.js
+++ b/lesson-plans/functions-and-unit-testing/3-testing-functions/exercises/3-repeat-repeat.test.js
@@ -7,7 +7,15 @@
* @param {number} repeats - How many times to repeat the characters and string.
* @returns {string} The string with repeated characters, repeated.
*/
-const repeatRepeat = () => {};
+const repeatRepeat = (text, repeats) => {
+ let newText = '';
+ for (let i = 0; i < text.length; i++) {
+ newText += text[i].repeat(repeats);
+ }
+ newText = newText.repeat(repeats);
+
+ return newText;
+};
describe('repeatRepeat: repeats each character and the whole string', () => {
it('repeat-repeats 0 times', () => {
diff --git a/lesson-plans/sabotage/IntegertoRoman.js b/lesson-plans/sabotage/IntegertoRoman.js
new file mode 100644
index 0000000..0bf3005
--- /dev/null
+++ b/lesson-plans/sabotage/IntegertoRoman.js
@@ -0,0 +1,48 @@
+/**
+ * @param {number} num
+ * @return {string}
+ */
+
+let numbersAndNumerals = [
+ {number:1000, roman:'M'},
+ {number:900, roman:'CM'},
+ {number:500, roman:'D'},
+ {number:400, roman:'CD'},
+ {number:100, roman:'C'},
+ {number:90, roman:'XC'},
+ {number:50, roman:'L'},
+ {number:40, roman:'XL'},
+ {number:10, roman:'X'},
+ {number:9, roman:'IX'},
+ {number:5, roman:'V'},
+ {number:4, roman:'IV'},
+ {number:1, roman:'I'}
+];
+var intToRoman = function(num) {
+ let romanNumeral = '';
+ for(let i = 0; i < numbersAndNumerals.length; i++){
+ while (numbersAndNumerals[i].number <= num){
+ num -= numbersAndNumerals[i].number;
+ romanNumeral += numbersAndNumerals[i].roman
+ }
+ }
+ return romanNumeral;
+};
+
+describe('integerToRoman function', () => {
+ it('should return empty string for 0', () => {
+ expect(intToRoman(0)).toBe('');
+ });
+ it('should return a roman ', () => {
+ expect(intToRoman(10)).toBe('X');
+ });
+ it('should return a roman ', () => {
+ expect(intToRoman(58)).toBe('LVIII');
+ });
+ it('should return a roman ', () => {
+ expect(intToRoman(1994)).toBe('MCMXCIV');
+ });
+ it('should return a roman ', () => {
+ expect(intToRoman(686)).toBe('DCLXXXVI');
+ });
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/containsDuplicate.js b/lesson-plans/sabotage/containsDuplicate.js
new file mode 100644
index 0000000..9778f47
--- /dev/null
+++ b/lesson-plans/sabotage/containsDuplicate.js
@@ -0,0 +1,37 @@
+/**
+ * @param {number[]} nums
+ * @return {boolean}
+ */
+var containsDuplicate = function(nums){
+ if (nums.length > 1){
+ let numSet = new Set();
+for (let i = 0; i < nums.length; i++){
+let num = nums[i];
+if (numSet.has(num)){
+ return true; // duplicate found//
+}
+numSet.add(num);
+}
+ }
+ return false;
+};
+
+ describe('containsDuplicate: contains duplicate numbers',() => {
+ it('empty string does not contain any number',() => {
+ const returned = containsDuplicate('', false);
+ expect(returned).toEqual(false);
+ });
+ it('check for non empty string',() => {
+ const returned = containsDuplicate('hi', false);
+ expect(returned).toEqual(false);
+ });
+ it('check for an array having different numbers',() => {
+ const returned = containsDuplicate([3,2,5], false);
+ expect(returned).toEqual(false);
+ });
+ it('check for an array having same numbers',() => {
+ const returned = containsDuplicate([2,1,3,2], true);
+ expect(returned).toEqual(true);
+ });
+});
+
diff --git a/lesson-plans/sabotage/convertTemperature.js b/lesson-plans/sabotage/convertTemperature.js
new file mode 100644
index 0000000..ac71400
--- /dev/null
+++ b/lesson-plans/sabotage/convertTemperature.js
@@ -0,0 +1,41 @@
+/**
+ * @param {number} celsius
+ * @return {number[]}
+ */
+var convertTemperature = function(celsiusArray) {
+ if(!celsiusArray || celsiusArray.length === 0){
+ return [];
+ }
+ let results = [];
+ for(let i = 0; i < celsiusArray.length; i++){
+ let celsius = celsiusArray[i];
+ let kelvin = celsius + 273.15;
+ let fahrenheit = (celsius * 1.8) + 32;
+ results.push([kelvin,fahrenheit])
+
+ }
+ return results;
+
+};
+
+describe('convertTemperature:celsius converts into kelvin and fahrenheit',() => {
+ it('if temperature is 0 degree celsius',() => {
+ const returned = convertTemperature([0]);
+ expect(returned).toEqual([[273.15, 32]]);
+ });
+
+it('if temperature is 36.5 degree celsius',() => {
+ const returned = convertTemperature([36.5]);
+ expect(returned).toEqual([[309.65, 97.7]]);
+ });
+
+ it('if temperature is 122.11 degree celsius',() => {
+ const returned = convertTemperature([122.11]);
+ expect(returned).toEqual([[395.26, 251.798]]);
+ });
+
+ it('if temperature is not given',() => {
+ const returned = convertTemperature([]);
+ expect(returned).toEqual([]);
+ });
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/defangingAnIP.js b/lesson-plans/sabotage/defangingAnIP.js
new file mode 100644
index 0000000..c7dd741
--- /dev/null
+++ b/lesson-plans/sabotage/defangingAnIP.js
@@ -0,0 +1,38 @@
+/**
+ * @param {string} address
+ * @return {string}
+ */
+var defangIPaddr = function(address) {
+ let result = '';
+ for (let i = 0; i < address.length; i++){
+ let char = address[i];
+ if (char === '.'){
+ result += '[.]';
+ } else {
+ result += char;
+ }
+ }
+ if (result === ''){
+ return address
+ }
+ return result;
+};
+
+describe('defangIPaddr: a defanging IP address replaces every "." with "[.]".', () => {
+ it('should return an empty string for an empty IP address',() => {
+ const ip = "";
+ const defangedIP = defangIPaddr(ip);
+ expect(defangedIP).toBe("");
+ });
+it('should handle IP address with different lengths',() => {
+ const ip = "1.1.1.1";
+ const defangedIP = defangIPaddr(ip);
+ expect(defangedIP).toBe("1[.]1[.]1[.]1");
+ });
+it('should handle IP address correctly',() => {
+ const ip = "255.100.50.0";
+ const defangedIP = defangIPaddr(ip);
+ expect(defangedIP).toBe("255[.]100[.]50[.]0");
+ });
+
+ });
\ No newline at end of file
diff --git a/lesson-plans/sabotage/palindromeNumber.js b/lesson-plans/sabotage/palindromeNumber.js
new file mode 100644
index 0000000..b1aabb3
--- /dev/null
+++ b/lesson-plans/sabotage/palindromeNumber.js
@@ -0,0 +1,34 @@
+/**
+ * @param {number} x
+ * @return {boolean}
+ */
+var isPalindrome = function(x) {
+
+ const xStr = x.toString();
+
+ return xStr === xStr.split('').reverse().join('');
+
+};
+
+describe('isPalindrome: check if a number is a palindrome', () => {
+ it('should return true for single digit numbers', () => {
+ expect(isPalindrome(0)).toBe(true);
+ expect(isPalindrome(9)).toBe(true);
+});
+
+ it('should return true for palindromic numbers', function() {
+ expect(isPalindrome(121)).toBe(true);
+ expect(isPalindrome(12321)).toBe(true);
+ });
+
+ it('should return false for non-palindromic numbers', function() {
+ expect(isPalindrome(123)).toBe(false);
+ expect(isPalindrome(123456789)).toBe(false);
+ });
+
+ it('should return false for negative numbers', function() {
+ expect(isPalindrome(-121)).toBe(false);
+ expect(isPalindrome(-12321)).toBe(false);
+ });
+
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/reverseInteger.js b/lesson-plans/sabotage/reverseInteger.js
new file mode 100644
index 0000000..dc6276f
--- /dev/null
+++ b/lesson-plans/sabotage/reverseInteger.js
@@ -0,0 +1,36 @@
+/**
+ * @param {number} x
+ * @return {number}
+ */
+
+var reverseInt= function(x) {
+ let reversed = 0;
+ while(x != 0){
+ const pop = x % 10;
+ x =Math.trunc(x/ 10);
+ reversed = (reversed * 10) + pop;
+ }
+ return reversed;
+};
+
+describe('reverseInt: check if a integer reversed or not', () => {
+ it('should return same integer for single digit integer', () => {
+ expect(reverseInt(5)).toBe(5);
+ expect(reverseInt(9)).toBe(9);
+});
+
+ it('if integer is positive multi-digit number', () => {
+ expect(reverseInt(135)).toBe(531);
+ expect(reverseInt(5678)).toBe(8765);
+});
+
+ it('if integer is negative number', () => {
+ expect(reverseInt(-6735)).toBe(-5376);
+ expect(reverseInt(-438)).toBe(-834);
+});
+
+ it('if integer is having zero at unit place', () => {
+ expect(reverseInt(120)).toBe(21);
+ expect(reverseInt(-560)).toBe(-65);
+});
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/romantoInteger.js b/lesson-plans/sabotage/romantoInteger.js
new file mode 100644
index 0000000..6169462
--- /dev/null
+++ b/lesson-plans/sabotage/romantoInteger.js
@@ -0,0 +1,37 @@
+/**
+ * @param {string} s
+ * @return {number}
+ */
+var romanToInt = function(s) {
+ const sym = {'I':1,'V':5,'X':10,'L':50,'C':100,'D':500,'M':1000}
+ let total = 0;
+ for(let i = 0; i < s.length; i++){
+ let curr = sym[s[i]];
+ let next = sym[s[i+1]];
+ if(curr < next){
+ total += next-curr;
+ i++;
+ } else {
+ total += curr;
+ }
+ }
+ return total;
+};
+
+describe('roman to integer function',() => {
+ it('should return 0 for an empty string',() => {
+ expect(romanToInt('')).toBe(0);
+ });
+
+ it('should return an integer',() => {
+ expect(romanToInt('IV')).toBe(4);
+ });
+
+it('should return an integer',() => {
+ expect(romanToInt('LVIII')).toBe(58);
+ });
+
+ it('should return an integer',() => {
+ expect(romanToInt('MCMXCIV')).toBe(1994);
+ });
+ });
\ No newline at end of file
diff --git a/lesson-plans/sabotage/study.json b/lesson-plans/sabotage/study.json
new file mode 100644
index 0000000..56c374b
--- /dev/null
+++ b/lesson-plans/sabotage/study.json
@@ -0,0 +1,12 @@
+{
+ "study": {
+ "ask": false,
+ "trace": false,
+ "flowchart": false,
+ "variables": false,
+ "blanks": false,
+ "eslint": false,
+ "openIn": false,
+ "tests": [".js", ".spec.js"]
+ }
+}
diff --git a/lesson-plans/sabotage/toLowerCase.js b/lesson-plans/sabotage/toLowerCase.js
new file mode 100644
index 0000000..8fa742e
--- /dev/null
+++ b/lesson-plans/sabotage/toLowerCase.js
@@ -0,0 +1,30 @@
+/**
+ * @param {string} s
+ * @return {string}
+ */
+var toLowerCase = function(s) {
+ let str1 = s.toLowerCase();
+ return str1;
+};
+
+describe('a string is a string replacing every letter to lowercase.',() => {
+ it('should return an empty string when given an empty string.',() => {
+ let returned = toLowerCase('');
+ expect(returned).toBe('');
+ });
+
+it('non empty should return in lowercase',() => {
+ let returned = toLowerCase('Hello');
+ expect(returned).toBe('hello');
+ });
+
+ it('uppercase should return to lowercase',() => {
+ let returned = toLowerCase('HELLO');
+ expect(returned).toBe('hello');
+ });
+
+ it('lowercase should return to lowercase',() => {
+ let returned = toLowerCase('hello');
+ expect(returned).toBe('hello');
+ });
+ });
\ No newline at end of file
diff --git a/lesson-plans/sabotage/truncatingSentence.js b/lesson-plans/sabotage/truncatingSentence.js
new file mode 100644
index 0000000..cf09528
--- /dev/null
+++ b/lesson-plans/sabotage/truncatingSentence.js
@@ -0,0 +1,36 @@
+/**
+ * @param {string} s
+ * @param {number} k
+ * @return {string}
+ */
+var truncateSentence = function(s, k) {
+ s = s.split(' ');
+ result = [];
+ for (let i = 0; i < s.length; i++){
+ if (i < k){
+ result.push(s[i]);
+ }
+ }
+return result.join(' ');
+};
+
+describe('a truncinate "s" such that it contains only the first "k" words', () => {
+ it('should return an empty string when given an empty sentence',() => {
+ const sentence = "";
+ const truncatedSentence = truncateSentence(sentence, 4);
+ expect(truncatedSentence).toBe("");
+ });
+
+it('should truncate a sentence correctly',() => {
+ const sentence = "Hello how are you friend";
+ const truncatedSentence = truncateSentence(sentence, 4);
+ expect(truncatedSentence).toBe("Hello how are you");
+ });
+
+it('should return the original sentence when given a number equal to the length of the sentence',() => {
+ const sentence = "What is the solution for this problem";
+ const truncatedSentence = truncateSentence(sentence, 7);
+ expect(truncatedSentence).toBe("What is the solution for this problem");
+ });
+
+ });
diff --git a/lesson-plans/sabotage/twoSums.js b/lesson-plans/sabotage/twoSums.js
new file mode 100644
index 0000000..8f47f37
--- /dev/null
+++ b/lesson-plans/sabotage/twoSums.js
@@ -0,0 +1,40 @@
+
+/**
+ * @param {number[]} nums
+ * @param {number} target
+ * @return {number[]}
+ */
+
+var twoSum = function (nums, target) {
+ for (let i = 0; i < nums.length; i++) {
+ for (let j = i + 1; j < nums.length; j++) {
+ if (nums[i] + nums[j] == target) {
+ return [i, j];
+ }
+ }
+ }
+ return [];
+};
+
+describe('twoSums: return indices of the two numbers such that they add up to target', () => {
+ it('if two arrays are empty', () => {
+ const returned = twoSum([], 9);
+ expect(returned).toEqual([]);
+ });
+
+ it('if an array of integers nums and an integer target', () => {
+ const returned = twoSum([2, 3, 4], 5);
+ expect(returned).toEqual([0, 1]);
+ });
+
+ it('if an array of integers nums and an integer target', () => {
+ const returned = twoSum([2, 3, 5, 7], 12);
+ expect(returned).toEqual([2, 3]);
+ });
+
+ it('if an array of integers nums and an integer target', () => {
+ const returned = twoSum([2, 3, 5, 7, 9], 14)
+ expect(returned).toEqual([2, 4]);
+ });
+
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/typesOfTriangle.js b/lesson-plans/sabotage/typesOfTriangle.js
new file mode 100644
index 0000000..9d2a5d8
--- /dev/null
+++ b/lesson-plans/sabotage/typesOfTriangle.js
@@ -0,0 +1,38 @@
+/**
+ * @param {number[]} nums
+ * @return {string}
+ */
+var triangleType = function(nums) {
+ if (nums.length === 3){
+ let a = nums[0], b = nums[1], c = nums[2];
+ if(a === b && b === c){
+ return "equilateral";
+ }
+ else if(a === b || b === c || a === c){
+ return "isosceles";
+ }
+ else{
+ return "scalene";
+ };
+ }
+return "none";
+};
+
+describe('triangleType: checking if it is triangle or not',() => {
+ it('if it is not a triangle',() => {
+ const returned = triangleType([1,2]);
+ expect(returned).toEqual('none');
+ });
+ it('if three sides are equal',() => {
+ const returned = triangleType([3,3,3]);
+ expect(returned).toEqual('equilateral');
+ });
+ it('if two sides are equal',() => {
+ const returned = triangleType([2,2,5]);
+ expect(returned).toEqual('isosceles');
+ });
+ it('if having different sides',() => {
+ const returned = triangleType([1,3,2]);
+ expect(returned).toEqual('scalene');
+ });
+});
\ No newline at end of file
diff --git a/lesson-plans/sabotage/validParentheses.js b/lesson-plans/sabotage/validParentheses.js
new file mode 100644
index 0000000..55f1d77
--- /dev/null
+++ b/lesson-plans/sabotage/validParentheses.js
@@ -0,0 +1,45 @@
+/**
+ * @param {string} s
+ * @return {boolean}
+ */
+
+var isValid = function(s) {
+ let stack = [];
+ let brackets = {
+ '[' : ']',
+ '{' : '}',
+ '(' : ')',
+ }
+ for (let i = 0; i < s.length; i++ ){
+ if (s[i] === '(' || s[i] === '{' || s[i] === '['){
+ stack.push(s[i]);
+ }
+ else {
+ let last = stack.pop();
+ if (s[i] !== brackets[last]){
+ return false;
+ }
+ }
+ } if (stack.length !== 0){
+ return false;
+ }
+ return true;
+};
+
+describe('isValid: check if the parentheses are valid ', () => {
+ it('should return true for valid parentheses', () => {
+ expect(isValid("()")).toBe(true);
+ expect(isValid("(){}[]")).toBe(true);
+ expect(isValid("[({})]")).toBe(true);
+});
+
+it('should return false for invalid parentheses', () => {
+ expect(isValid("([)")).toBe(false);
+ expect(isValid("({[])")).toBe(false);
+ expect(isValid("[(]}]")).toBe(false);
+});
+
+it('should return true for empty parentheses', () => {
+ expect(isValid("")).toBe(true);
+});
+});
\ No newline at end of file
diff --git a/lesson-plans/side-effects/1-reference-vs-value/exercises/1-fill-in-blanks.js b/lesson-plans/side-effects/1-reference-vs-value/exercises/1-fill-in-blanks.js
index 2d55012..8b72d0a 100644
--- a/lesson-plans/side-effects/1-reference-vs-value/exercises/1-fill-in-blanks.js
+++ b/lesson-plans/side-effects/1-reference-vs-value/exercises/1-fill-in-blanks.js
@@ -7,11 +7,11 @@ const deepCompare = (actual, expect) => actual === expect || Object.is(actual, e
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const array1 = _;
-const array2 = _;
+const array1 = [1, 2, 3, 4];
+const array2 = array1;
const test1 = array1 === array2;
console.assert(test1, 'Test 1');
const test2 = deepCompare(array1, array2);
-console.assert(test2, 'Test 2');
+console.assert(test2, 'Test 2');
\ No newline at end of file
diff --git a/lesson-plans/side-effects/1-reference-vs-value/exercises/2-fill-in-blanks.js b/lesson-plans/side-effects/1-reference-vs-value/exercises/2-fill-in-blanks.js
index 7451676..179d729 100644
--- a/lesson-plans/side-effects/1-reference-vs-value/exercises/2-fill-in-blanks.js
+++ b/lesson-plans/side-effects/1-reference-vs-value/exercises/2-fill-in-blanks.js
@@ -7,11 +7,11 @@ const deepCompare = (actual, expect) => actual === expect || Object.is(actual, e
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const array1 = _;
-const array2 = _;
+const array1 = [1, 2, 3, 4, 5];
+const array2 = [1, 2, 3, 4, 5];
const test1 = array1 !== array2;
console.assert(test1, 'Test 1');
const test2 = deepCompare(array1, array2);
-console.assert(test2, 'Test 2');
+console.assert(test2, 'Test 2');
\ No newline at end of file
diff --git a/lesson-plans/side-effects/1-reference-vs-value/exercises/3-fill-in-blanks.js b/lesson-plans/side-effects/1-reference-vs-value/exercises/3-fill-in-blanks.js
index 740ec9d..1b12f70 100644
--- a/lesson-plans/side-effects/1-reference-vs-value/exercises/3-fill-in-blanks.js
+++ b/lesson-plans/side-effects/1-reference-vs-value/exercises/3-fill-in-blanks.js
@@ -7,12 +7,12 @@ const deepCompare = (actual, expect) => actual === expect || Object.is(actual, e
// how many solutions can you find?
// psst. use JS Tutor & the debugger
-const array1 = _;
-const array2 = _;
+const array1 = [1, 3, 4];
+const array2 = [7, 6, 7];
const test1 = array1 !== array2;
console.assert(test1, 'Test 1');
const comparison = deepCompare(array1, array2);
const test2 = !comparison;
-console.assert(test2, 'Test 2');
+console.assert(test2, 'Test 2');
\ No newline at end of file
diff --git a/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-arrays.js b/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-arrays.js
index 4808278..841468a 100644
--- a/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-arrays.js
+++ b/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-arrays.js
@@ -8,7 +8,10 @@ const bReference = b;
let temp;
// -- swap reference types (write this code) --
+temp = a;
+a = b;
+b = temp;
// -- assert the references (this is correct) --
console.assert(a === bReference, 'a references the array with strings');
-console.assert(b === aReference, 'b references the array with numbers');
+console.assert(b === aReference, 'b references the array with numbers');
\ No newline at end of file
diff --git a/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-items.js b/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-items.js
index d725ae0..94c7e25 100644
--- a/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-items.js
+++ b/lesson-plans/side-effects/1-reference-vs-value/exercises/swap-items.js
@@ -11,7 +11,14 @@ const arr2 = [3, 'a', 'c'];
let temp;
// -- swap values (write this code) --
+temp = arr1[2];
+arr1[2] = arr2[0];
+arr2[0] = temp;
+
+temp = arr2[1];
+arr2[1] = arr2[0];
+arr2[0] = temp;
// -- assert values (this is correct) --
console.assert(deepCompare(arr1, [1, 2, 3, 4]), 'array 1');
-console.assert(deepCompare(arr2, ['a', 'b', 'c']), 'array 2');
+console.assert(deepCompare(arr2, ['a', 'b', 'c']), 'array 2');
\ No newline at end of file
diff --git a/lesson-plans/side-effects/2-side-effects/exercises/1-copy-array.js b/lesson-plans/side-effects/2-side-effects/exercises/1-copy-array.js
index e5b89e2..cd95c60 100644
--- a/lesson-plans/side-effects/2-side-effects/exercises/1-copy-array.js
+++ b/lesson-plans/side-effects/2-side-effects/exercises/1-copy-array.js
@@ -1,6 +1,5 @@
'use strict';
-// prettier-ignore
const deepCompare = (actual, expect) => actual === expect || Object.is(actual, expect) || (Object(actual) === actual && Object(expect) === expect) && (Array.isArray(actual) && Array.isArray(expect) && actual.length === expect.length && expect.every((expect, index) => deepCompare(actual[index], expect)) || Object.keys(actual).length === Object.keys(expect).length && Object.keys(expect).every((key) => deepCompare(actual[key], expect[key])));
/**
@@ -9,7 +8,9 @@ const deepCompare = (actual, expect) => actual === expect || Object.is(actual, e
* @param {number[]} [arr=[]] - __
* @returns {number[]} __
*/
-const copyArray = () => {};
+const copyArray = (arr) => {
+ return [...arr];
+};
const _1_arg = [1, 2, 3];
const _1_returned = copyArray(_1_arg);
@@ -30,4 +31,4 @@ console.assert(
console.assert(
deepCompare(_2_arg, [10, 11, 12, 13]),
'2.c: _2_arg was not modified',
-);
+);
\ No newline at end of file
diff --git a/lesson-plans/side-effects/2-side-effects/exercises/2-reverse-array.js b/lesson-plans/side-effects/2-side-effects/exercises/2-reverse-array.js
index 0685684..f482204 100644
--- a/lesson-plans/side-effects/2-side-effects/exercises/2-reverse-array.js
+++ b/lesson-plans/side-effects/2-side-effects/exercises/2-reverse-array.js
@@ -9,7 +9,10 @@ const deepCompare = (actual, expect) => actual === expect || Object.is(actual, e
* @param {number[]} [arr=[]] - __
* @returns {number[]} __
*/
-const reverseArray = () => {};
+const reverseArray = (arr) => {
+ const arrCopy = [...arr];
+ return arrCopy.reverse();
+};
const _1_arg = [1, 2, 3];
const _1_returned = reverseArray(_1_arg);
@@ -30,4 +33,4 @@ console.assert(
console.assert(
deepCompare(_2_arg, [10, 11, 12, 13]),
'2.c: _2_arg was not modified',
-);
+);
\ No newline at end of file
diff --git a/lesson-plans/side-effects/3-testing-side-effects/exercises/add-a-number.test.js b/lesson-plans/side-effects/3-testing-side-effects/exercises/add-a-number.test.js
index 77e1727..83923e8 100644
--- a/lesson-plans/side-effects/3-testing-side-effects/exercises/add-a-number.test.js
+++ b/lesson-plans/side-effects/3-testing-side-effects/exercises/add-a-number.test.js
@@ -14,7 +14,9 @@
* @example
* addANumber([-2, -1, 0, 1], 1); // [-1, 0, 1, 2]
*/
-const addANumber = () => {};
+ const addANumber = (numbers, addMe = 0) => {
+ return numbers.map((num) => num + addMe);
+};
describe('addANumber: adds a given number to each number in an array', () => {
describe('the function adds to each entry:', () => {
@@ -58,10 +60,14 @@ describe('addANumber: adds a given number to each number in an array', () => {
});
describe('there are no side-effects', () => {
it('returns a new array', () => {
- writeThisTest;
+ const argemnt = [1, 3, 4, 5];
+ const returned = addANumber(argemnt, 4);
+ expect(argemnt === returned).toEqual(false);
});
it('does not modify the original array', () => {
- writeThisTest;
+ const argemnt = [1, 3, 4, 5];
+ addANumber(argemnt, 4);
+ expect(argemnt).toEqual([1, 3, 4, 5]);
});
});
-});
+});
\ No newline at end of file
diff --git a/lesson-plans/side-effects/3-testing-side-effects/exercises/find-big-numbers.test.js b/lesson-plans/side-effects/3-testing-side-effects/exercises/find-big-numbers.test.js
index 7e5265e..3f1d668 100644
--- a/lesson-plans/side-effects/3-testing-side-effects/exercises/find-big-numbers.test.js
+++ b/lesson-plans/side-effects/3-testing-side-effects/exercises/find-big-numbers.test.js
@@ -14,7 +14,9 @@
* @example
* findBigNumbers([-2, -1, 0, 1, 2], 0); // [0, 1, 2]
*/
-const findBigNumbers = () => {};
+const findBigNumbers = (numbers, big = 0) => {
+ return numbers.filter((item) => item >= big);
+};
describe('findBigNumbers: finds all the big numbers in an array', () => {
describe('the function finds big numbers:', () => {
@@ -52,10 +54,14 @@ describe('findBigNumbers: finds all the big numbers in an array', () => {
});
describe('there are no side-effects', () => {
it('returns a new array', () => {
- writeThisTest;
+ const argument = [1, 2, 3, 4, 5, 6];
+ const returned = findBigNumbers(argument);
+ expect(argument === returned).toEqual(false);
});
it('does not modify the original array', () => {
- writeThisTest;
+ const argument = [1, 2, 3, 4];
+ findBigNumbers(argument);
+ expect(argument).toEqual([1, 2, 3, 4]);
});
});
-});
+});
\ No newline at end of file
diff --git a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-consonants.js b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-consonants.js
index 9a5cda6..0edc04b 100644
--- a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-consonants.js
+++ b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-consonants.js
@@ -13,8 +13,8 @@ const removeConsonants = () => {
// --- remove all consonants from the input ---
// use `removeCharacters` to write this step of the program
- ___;
-
+ const consonants = 'bcdfghjklmnpqrstvwxyz';
+const noConsonants = removeCharacters(userText, consonants)
// --- display the input with no consonants ---
displayString('removified', noConsonants);
};
diff --git a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-these.js b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-these.js
index a90ec52..a9f570b 100644
--- a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-these.js
+++ b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-these.js
@@ -14,10 +14,9 @@ const removeThese = () => {
// remove all the user's characters from the input
// use `removeCharacters` to write this step of the program
- ___;
-
+ const removechar = removeCharacters(userText, removeThese);
// --- display the input with no consonants ---
- displayString('removified', noConsonants);
+ displayString('removified', removechar);
};
document.getElementById('these').addEventListener('click', removeThese);
diff --git a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-vowels.js b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-vowels.js
index 6f86577..3dba3b8 100644
--- a/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-vowels.js
+++ b/lesson-plans/util-functions/exercises/1-call-function/remove-characters/src/remove-vowels.js
@@ -13,8 +13,8 @@ const removeVowels = () => {
// --- remove all vowels from the input ---
// use `removeCharacters` to write this step of the program
- ___;
-
+ const vowels = 'aeiou';
+const noVowels = removeCharacters(userText, vowels)
// --- display the input with no vowels ---
displayString('removified', noVowels);
};
diff --git a/lesson-plans/util-functions/exercises/2-write-function/palindrome-detector/src/utils/is-palindrome.js b/lesson-plans/util-functions/exercises/2-write-function/palindrome-detector/src/utils/is-palindrome.js
index da49c3d..bdefddc 100644
--- a/lesson-plans/util-functions/exercises/2-write-function/palindrome-detector/src/utils/is-palindrome.js
+++ b/lesson-plans/util-functions/exercises/2-write-function/palindrome-detector/src/utils/is-palindrome.js
@@ -5,4 +5,10 @@
* @param {string} [toCheck=''] - The string that might be a palindrome.
* @returns {boolean} Is the string a palindrome?
*/
-export const isPalindrome = (toCheck = '') => {};
+export const isPalindrome = (toCheck = '') => {
+ let reversed = '';
+ for(const character of toCheck){
+ reversed = character + reversed;
+ }
+ return toCheck === reversed;
+};
diff --git a/lesson-plans/util-functions/exercises/3-refactor-function/reverse-something/src/utils/reverse.js b/lesson-plans/util-functions/exercises/3-refactor-function/reverse-something/src/utils/reverse.js
index 7b83c7e..f4aed6a 100644
--- a/lesson-plans/util-functions/exercises/3-refactor-function/reverse-something/src/utils/reverse.js
+++ b/lesson-plans/util-functions/exercises/3-refactor-function/reverse-something/src/utils/reverse.js
@@ -1,4 +1,10 @@
/**
*
*/
-export const reverse = (text) => {};
+export const reverse = (text='') => {
+ let reversedText = '';
+ for(const char of text){
+ reversedText = char + reversedText;
+ }
+ return reversedText;
+};
diff --git a/package-lock.json b/package-lock.json
index 7b762e3..0445c9f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,7 +1,7 @@
{
"name": "debugging",
"version": "1.0.0",
- "lockfileVersion": 3,
+ "lockfileVersion": 2,
"requires": true,
"packages": {
"": {
@@ -7146,5 +7146,5352 @@
"url": "https://github.com/sponsors/sindresorhus"
}
}
+ },
+ "dependencies": {
+ "@ampproject/remapping": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
+ "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
+ "dev": true,
+ "requires": {
+ "@jridgewell/gen-mapping": "^0.3.0",
+ "@jridgewell/trace-mapping": "^0.3.9"
+ }
+ },
+ "@babel/code-frame": {
+ "version": "7.12.11",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
+ "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "@babel/compat-data": {
+ "version": "7.22.3",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.3.tgz",
+ "integrity": "sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==",
+ "dev": true
+ },
+ "@babel/core": {
+ "version": "7.22.1",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.1.tgz",
+ "integrity": "sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==",
+ "dev": true,
+ "requires": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.22.0",
+ "@babel/helper-compilation-targets": "^7.22.1",
+ "@babel/helper-module-transforms": "^7.22.1",
+ "@babel/helpers": "^7.22.0",
+ "@babel/parser": "^7.22.0",
+ "@babel/template": "^7.21.9",
+ "@babel/traverse": "^7.22.1",
+ "@babel/types": "^7.22.0",
+ "convert-source-map": "^1.7.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.2",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.18.6"
+ }
+ },
+ "convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+ "dev": true
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/generator": {
+ "version": "7.22.3",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.22.3.tgz",
+ "integrity": "sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.22.3",
+ "@jridgewell/gen-mapping": "^0.3.2",
+ "@jridgewell/trace-mapping": "^0.3.17",
+ "jsesc": "^2.5.1"
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.22.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz",
+ "integrity": "sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==",
+ "dev": true,
+ "requires": {
+ "@babel/compat-data": "^7.22.0",
+ "@babel/helper-validator-option": "^7.21.0",
+ "browserslist": "^4.21.3",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/helper-environment-visitor": {
+ "version": "7.22.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz",
+ "integrity": "sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==",
+ "dev": true
+ },
+ "@babel/helper-function-name": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
+ "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.20.7",
+ "@babel/types": "^7.21.0"
+ }
+ },
+ "@babel/helper-hoist-variables": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
+ "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.18.6"
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
+ "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.21.4"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.22.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.1.tgz",
+ "integrity": "sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-environment-visitor": "^7.22.1",
+ "@babel/helper-module-imports": "^7.21.4",
+ "@babel/helper-simple-access": "^7.21.5",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/template": "^7.21.9",
+ "@babel/traverse": "^7.22.1",
+ "@babel/types": "^7.22.0"
+ }
+ },
+ "@babel/helper-plugin-utils": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz",
+ "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==",
+ "dev": true
+ },
+ "@babel/helper-simple-access": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz",
+ "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.21.5"
+ }
+ },
+ "@babel/helper-split-export-declaration": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
+ "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.18.6"
+ }
+ },
+ "@babel/helper-string-parser": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz",
+ "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==",
+ "dev": true
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.19.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
+ "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
+ "dev": true
+ },
+ "@babel/helper-validator-option": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
+ "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
+ "dev": true
+ },
+ "@babel/helpers": {
+ "version": "7.22.3",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.3.tgz",
+ "integrity": "sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.21.9",
+ "@babel/traverse": "^7.22.1",
+ "@babel/types": "^7.22.3"
+ }
+ },
+ "@babel/highlight": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
+ "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.18.6",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^1.9.0"
+ }
+ },
+ "chalk": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ }
+ },
+ "color-convert": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "dev": true,
+ "requires": {
+ "color-name": "1.1.3"
+ }
+ },
+ "color-name": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^3.0.0"
+ }
+ }
+ }
+ },
+ "@babel/parser": {
+ "version": "7.22.3",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.22.3.tgz",
+ "integrity": "sha512-vrukxyW/ep8UD1UDzOYpTKQ6abgjFoeG6L+4ar9+c5TN9QnlqiOi6QK7LSR5ewm/ERyGkT/Ai6VboNrxhbr9Uw==",
+ "dev": true
+ },
+ "@babel/plugin-syntax-async-generators": {
+ "version": "7.8.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
+ "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-bigint": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
+ "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-class-properties": {
+ "version": "7.12.13",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
+ "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.12.13"
+ }
+ },
+ "@babel/plugin-syntax-import-meta": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
+ "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-json-strings": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
+ "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-jsx": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
+ "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.20.2"
+ }
+ },
+ "@babel/plugin-syntax-logical-assignment-operators": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
+ "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-nullish-coalescing-operator": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
+ "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-numeric-separator": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
+ "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.10.4"
+ }
+ },
+ "@babel/plugin-syntax-object-rest-spread": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
+ "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-catch-binding": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
+ "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-optional-chaining": {
+ "version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
+ "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.8.0"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/plugin-syntax-typescript": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz",
+ "integrity": "sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.20.2"
+ }
+ },
+ "@babel/template": {
+ "version": "7.21.9",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.21.9.tgz",
+ "integrity": "sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.21.4",
+ "@babel/parser": "^7.21.9",
+ "@babel/types": "^7.21.5"
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.18.6"
+ }
+ }
+ }
+ },
+ "@babel/traverse": {
+ "version": "7.22.1",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.1.tgz",
+ "integrity": "sha512-lAWkdCoUFnmwLBhIRLciFntGYsIIoC6vIbN8zrLPqBnJmPu7Z6nzqnKd7FsxQUNAvZfVZ0x6KdNvNp8zWIOHSQ==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.22.0",
+ "@babel/helper-environment-visitor": "^7.22.1",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-hoist-variables": "^7.18.6",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/parser": "^7.22.0",
+ "@babel/types": "^7.22.0",
+ "debug": "^4.1.0",
+ "globals": "^11.1.0"
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.18.6"
+ }
+ },
+ "globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "dev": true
+ }
+ }
+ },
+ "@babel/types": {
+ "version": "7.22.3",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.3.tgz",
+ "integrity": "sha512-P3na3xIQHTKY4L0YOG7pM8M8uoUIB910WQaSiiMCZUC2Cy8XFEQONGABFnHWBa2gpGKODTAJcNhi5Zk0sLRrzg==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-string-parser": "^7.21.5",
+ "@babel/helper-validator-identifier": "^7.19.1",
+ "to-fast-properties": "^2.0.0"
+ }
+ },
+ "@bcoe/v8-coverage": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
+ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
+ "dev": true
+ },
+ "@cspell/cspell-bundled-dicts": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.31.1.tgz",
+ "integrity": "sha512-rsIev+dk1Vd8H1OKZhNhXycIVsMfeWJaeW3QUi1l4oIoGwQfJVbs1ZPZPHE5cglzyHOW1jQNStXf34UKaC6siA==",
+ "dev": true,
+ "requires": {
+ "@cspell/dict-ada": "^4.0.1",
+ "@cspell/dict-aws": "^3.0.0",
+ "@cspell/dict-bash": "^4.1.1",
+ "@cspell/dict-companies": "^3.0.9",
+ "@cspell/dict-cpp": "^5.0.2",
+ "@cspell/dict-cryptocurrencies": "^3.0.1",
+ "@cspell/dict-csharp": "^4.0.2",
+ "@cspell/dict-css": "^4.0.5",
+ "@cspell/dict-dart": "^2.0.2",
+ "@cspell/dict-django": "^4.0.2",
+ "@cspell/dict-docker": "^1.1.6",
+ "@cspell/dict-dotnet": "^5.0.0",
+ "@cspell/dict-elixir": "^4.0.2",
+ "@cspell/dict-en_us": "^4.3.2",
+ "@cspell/dict-en-common-misspellings": "^1.0.2",
+ "@cspell/dict-en-gb": "1.1.33",
+ "@cspell/dict-filetypes": "^3.0.0",
+ "@cspell/dict-fonts": "^3.0.1",
+ "@cspell/dict-fullstack": "^3.1.5",
+ "@cspell/dict-gaming-terms": "^1.0.4",
+ "@cspell/dict-git": "^2.0.0",
+ "@cspell/dict-golang": "^6.0.1",
+ "@cspell/dict-haskell": "^4.0.1",
+ "@cspell/dict-html": "^4.0.3",
+ "@cspell/dict-html-symbol-entities": "^4.0.0",
+ "@cspell/dict-java": "^5.0.5",
+ "@cspell/dict-k8s": "^1.0.1",
+ "@cspell/dict-latex": "^4.0.0",
+ "@cspell/dict-lorem-ipsum": "^3.0.0",
+ "@cspell/dict-lua": "^4.0.1",
+ "@cspell/dict-node": "^4.0.2",
+ "@cspell/dict-npm": "^5.0.5",
+ "@cspell/dict-php": "^4.0.1",
+ "@cspell/dict-powershell": "^5.0.1",
+ "@cspell/dict-public-licenses": "^2.0.2",
+ "@cspell/dict-python": "^4.0.2",
+ "@cspell/dict-r": "^2.0.1",
+ "@cspell/dict-ruby": "^5.0.0",
+ "@cspell/dict-rust": "^4.0.1",
+ "@cspell/dict-scala": "^5.0.0",
+ "@cspell/dict-software-terms": "^3.1.6",
+ "@cspell/dict-sql": "^2.1.0",
+ "@cspell/dict-svelte": "^1.0.2",
+ "@cspell/dict-swift": "^2.0.1",
+ "@cspell/dict-typescript": "^3.1.1",
+ "@cspell/dict-vue": "^3.0.0"
+ }
+ },
+ "@cspell/cspell-pipe": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.31.1.tgz",
+ "integrity": "sha512-zk1olZi4dr6GLm5PAjvsiZ01HURNSruUYFl1qSicGnTwYN8GaN4RhAwannAytcJ7zJPIcyXlid0YsB58nJf3wQ==",
+ "dev": true
+ },
+ "@cspell/cspell-service-bus": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.31.1.tgz",
+ "integrity": "sha512-YyBicmJyZ1uwKVxujXw7sgs9x+Eps43OkWmCtDZmZlnq489HdTSuhF1kTbVi2yeFSeaXIS87+uHo12z97KkQpg==",
+ "dev": true
+ },
+ "@cspell/cspell-types": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.31.1.tgz",
+ "integrity": "sha512-1KeTQFiHMssW1eRoF2NZIEg4gPVIfXLsL2+VSD/AV6YN7lBcuf6gRRgV5KWYarhxtEfjxhDdDTmu26l/iJEUtw==",
+ "dev": true
+ },
+ "@cspell/dict-ada": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-4.0.1.tgz",
+ "integrity": "sha512-/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw==",
+ "dev": true
+ },
+ "@cspell/dict-aws": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-3.0.0.tgz",
+ "integrity": "sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==",
+ "dev": true
+ },
+ "@cspell/dict-bash": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-4.1.1.tgz",
+ "integrity": "sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==",
+ "dev": true
+ },
+ "@cspell/dict-companies": {
+ "version": "3.0.12",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.12.tgz",
+ "integrity": "sha512-JZlTFHXMShWfDT8zKhXk2xv+/Wam2j4/Au7QvHwkjTWKgAgc6DMRy9mgI09IJ2zNouM5O0mE+M5OdJvJasXHQQ==",
+ "dev": true
+ },
+ "@cspell/dict-cpp": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-5.0.3.tgz",
+ "integrity": "sha512-7sx/RFsf0hB3q8chx8OHYl9Kd+g0pqA1laphwaAQ+/jPwoAreYT3kNQWbJ3bIt/rMoORetFSQxckSbaJXwwqpw==",
+ "dev": true
+ },
+ "@cspell/dict-cryptocurrencies": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-3.0.1.tgz",
+ "integrity": "sha512-Tdlr0Ahpp5yxtwM0ukC13V6+uYCI0p9fCRGMGZt36rWv8JQZHIuHfehNl7FB/Qc09NCF7p5ep0GXbL+sVTd/+w==",
+ "dev": true
+ },
+ "@cspell/dict-csharp": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-4.0.2.tgz",
+ "integrity": "sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==",
+ "dev": true
+ },
+ "@cspell/dict-css": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.6.tgz",
+ "integrity": "sha512-2Lo8W2ezHmGgY8cWFr4RUwnjbndna5mokpCK/DuxGILQnuajR0J31ANQOXj/8iZM2phFB93ZzMNk/0c04TDfSQ==",
+ "dev": true
+ },
+ "@cspell/dict-dart": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-2.0.2.tgz",
+ "integrity": "sha512-jigcODm7Z4IFZ4vParwwP3IT0fIgRq/9VoxkXfrxBMsLBGGM2QltHBj7pl+joX+c4cOHxfyZktGJK1B1wFtR4Q==",
+ "dev": true
+ },
+ "@cspell/dict-django": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-4.0.2.tgz",
+ "integrity": "sha512-L0Yw6+Yh2bE9/FAMG4gy9m752G4V8HEBjEAGeRIQ9qvxDLR9yD6dPOtgEFTjv7SWlKSrLb9wA/W3Q2GKCOusSg==",
+ "dev": true
+ },
+ "@cspell/dict-docker": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.6.tgz",
+ "integrity": "sha512-zCCiRTZ6EOQpBnSOm0/3rnKW1kCcAUDUA7SxJG3SuH6iZvKi3I8FEg8+O83WQUeXg0SyPNerD9F40JLnnJjJig==",
+ "dev": true
+ },
+ "@cspell/dict-dotnet": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-5.0.0.tgz",
+ "integrity": "sha512-EOwGd533v47aP5QYV8GlSSKkmM9Eq8P3G/eBzSpH3Nl2+IneDOYOBLEUraHuiCtnOkNsz0xtZHArYhAB2bHWAw==",
+ "dev": true
+ },
+ "@cspell/dict-elixir": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-4.0.3.tgz",
+ "integrity": "sha512-g+uKLWvOp9IEZvrIvBPTr/oaO6619uH/wyqypqvwpmnmpjcfi8+/hqZH8YNKt15oviK8k4CkINIqNhyndG9d9Q==",
+ "dev": true
+ },
+ "@cspell/dict-en_us": {
+ "version": "4.3.3",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.3.3.tgz",
+ "integrity": "sha512-Csjm8zWo1YzLrQSdVZsRMfwHXoqqKR41pA8RpRGy2ODPjFeSteslyTW7jv1+R5V/E/IUI97Cxu+Nobm8MBy4MA==",
+ "dev": true
+ },
+ "@cspell/dict-en-common-misspellings": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-en-common-misspellings/-/dict-en-common-misspellings-1.0.2.tgz",
+ "integrity": "sha512-jg7ZQZpZH7+aAxNBlcAG4tGhYF6Ksy+QS5Df73Oo+XyckBjC9QS+PrRwLTeYoFIgXy5j3ICParK5r3MSSoL4gw==",
+ "dev": true
+ },
+ "@cspell/dict-en-gb": {
+ "version": "1.1.33",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz",
+ "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==",
+ "dev": true
+ },
+ "@cspell/dict-filetypes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-3.0.0.tgz",
+ "integrity": "sha512-Fiyp0z5uWaK0d2TfR9GMUGDKmUMAsOhGD5A0kHoqnNGswL2iw0KB0mFBONEquxU65fEnQv4R+jdM2d9oucujuA==",
+ "dev": true
+ },
+ "@cspell/dict-fonts": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-3.0.2.tgz",
+ "integrity": "sha512-Z5QdbgEI7DV+KPXrAeDA6dDm/vTzyaW53SGlKqz6PI5VhkOjgkBXv3YtZjnxMZ4dY2ZIqq+RUK6qa9Pi8rQdGQ==",
+ "dev": true
+ },
+ "@cspell/dict-fullstack": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.5.tgz",
+ "integrity": "sha512-6ppvo1dkXUZ3fbYn/wwzERxCa76RtDDl5Afzv2lijLoijGGUw5yYdLBKJnx8PJBGNLh829X352ftE7BElG4leA==",
+ "dev": true
+ },
+ "@cspell/dict-gaming-terms": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz",
+ "integrity": "sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==",
+ "dev": true
+ },
+ "@cspell/dict-git": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-2.0.0.tgz",
+ "integrity": "sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==",
+ "dev": true
+ },
+ "@cspell/dict-golang": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-6.0.1.tgz",
+ "integrity": "sha512-Z19FN6wgg2M/A+3i1O8qhrGaxUUGOW8S2ySN0g7vp4HTHeFmockEPwYx7gArfssNIruw60JorZv+iLJ6ilTeow==",
+ "dev": true
+ },
+ "@cspell/dict-haskell": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-4.0.1.tgz",
+ "integrity": "sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==",
+ "dev": true
+ },
+ "@cspell/dict-html": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-4.0.3.tgz",
+ "integrity": "sha512-Gae8i8rrArT0UyG1I6DHDK62b7Be6QEcBSIeWOm4VIIW1CASkN9B0qFgSVnkmfvnu1Y3H7SSaaEynKjdj3cs8w==",
+ "dev": true
+ },
+ "@cspell/dict-html-symbol-entities": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-4.0.0.tgz",
+ "integrity": "sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==",
+ "dev": true
+ },
+ "@cspell/dict-java": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.5.tgz",
+ "integrity": "sha512-X19AoJgWIBwJBSWGFqSgHaBR/FEykBHTMjL6EqOnhIGEyE9nvuo32tsSHjXNJ230fQxQptEvRZoaldNLtKxsRg==",
+ "dev": true
+ },
+ "@cspell/dict-k8s": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-k8s/-/dict-k8s-1.0.1.tgz",
+ "integrity": "sha512-gc5y4Nm3hVdMZNBZfU2M1AsAmObZsRWjCUk01NFPfGhFBXyVne41T7E62rpnzu5330FV/6b/TnFcPgRmak9lLw==",
+ "dev": true
+ },
+ "@cspell/dict-latex": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-4.0.0.tgz",
+ "integrity": "sha512-LPY4y6D5oI7D3d+5JMJHK/wxYTQa2lJMSNxps2JtuF8hbAnBQb3igoWEjEbIbRRH1XBM0X8dQqemnjQNCiAtxQ==",
+ "dev": true
+ },
+ "@cspell/dict-lorem-ipsum": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-3.0.0.tgz",
+ "integrity": "sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==",
+ "dev": true
+ },
+ "@cspell/dict-lua": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.1.tgz",
+ "integrity": "sha512-j0MFmeCouSoC6EdZTbvGe1sJ9V+ruwKSeF+zRkNNNload7R72Co5kX1haW2xLHGdlq0kqSy1ODRZKdVl0e+7hg==",
+ "dev": true
+ },
+ "@cspell/dict-node": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-4.0.2.tgz",
+ "integrity": "sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==",
+ "dev": true
+ },
+ "@cspell/dict-npm": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.5.tgz",
+ "integrity": "sha512-eirZm4XpJNEcbmLGIwI2qXdRRlCKwEsH9mT3qCUytmbj6S6yn63F+8bShMW/yQBedV7+GXq9Td+cJdqiVutOiA==",
+ "dev": true
+ },
+ "@cspell/dict-php": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-4.0.1.tgz",
+ "integrity": "sha512-XaQ/JkSyq2c07MfRG54DjLi2CV+HHwS99DDCAao9Fq2JfkWroTQsUeek7wYZXJATrJVOULoV3HKih12x905AtQ==",
+ "dev": true
+ },
+ "@cspell/dict-powershell": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-5.0.1.tgz",
+ "integrity": "sha512-lLl+syWFgfv2xdsoxHfPIB2FGkn//XahCIKcRaf52AOlm1/aXeaJN579B9HCpvM7wawHzMqJ33VJuL/vb6Lc4g==",
+ "dev": true
+ },
+ "@cspell/dict-public-licenses": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-2.0.2.tgz",
+ "integrity": "sha512-baKkbs/WGEV2lCWZoL0KBPh3uiPcul5GSDwmXEBAsR5McEW52LF94/b7xWM0EmSAc/y8ODc5LnPYC7RDRLi6LQ==",
+ "dev": true
+ },
+ "@cspell/dict-python": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-4.0.6.tgz",
+ "integrity": "sha512-24AhYyTZdOTLqkoiwXlEZrqEHkOwmePWQqRc9YigV9X69EtzBMrdMhYBvkJCVnQZD2ckT05U3A36YFYaxZ39Pg==",
+ "dev": true
+ },
+ "@cspell/dict-r": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-2.0.1.tgz",
+ "integrity": "sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==",
+ "dev": true
+ },
+ "@cspell/dict-ruby": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-5.0.0.tgz",
+ "integrity": "sha512-ssb96QxLZ76yPqFrikWxItnCbUKhYXJ2owkoIYzUGNFl2CHSoHCb5a6Zetum9mQ/oUA3gNeUhd28ZUlXs0la2A==",
+ "dev": true
+ },
+ "@cspell/dict-rust": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.1.tgz",
+ "integrity": "sha512-xJSSzHDK2z6lSVaOmMxl3PTOtfoffaxMo7fTcbZUF+SCJzfKbO6vnN9TCGX2sx1RHFDz66Js6goz6SAZQdOwaw==",
+ "dev": true
+ },
+ "@cspell/dict-scala": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-5.0.0.tgz",
+ "integrity": "sha512-ph0twaRoV+ylui022clEO1dZ35QbeEQaKTaV2sPOsdwIokABPIiK09oWwGK9qg7jRGQwVaRPEq0Vp+IG1GpqSQ==",
+ "dev": true
+ },
+ "@cspell/dict-software-terms": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.1.10.tgz",
+ "integrity": "sha512-BWzpmXeNehVbn5ZgEvx/gNZrLt+yyQEU4lQkV+ojg9Os5fCIoVBL1tAGFH1ljDhk625b7zAqFwtS5XseYNUlbA==",
+ "dev": true
+ },
+ "@cspell/dict-sql": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-sql/-/dict-sql-2.1.0.tgz",
+ "integrity": "sha512-Bb+TNWUrTNNABO0bmfcYXiTlSt0RD6sB2MIY+rNlaMyIwug43jUjeYmkLz2tPkn3+2uvySeFEOMVYhMVfcuDKg==",
+ "dev": true
+ },
+ "@cspell/dict-svelte": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz",
+ "integrity": "sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==",
+ "dev": true
+ },
+ "@cspell/dict-swift": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-2.0.1.tgz",
+ "integrity": "sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==",
+ "dev": true
+ },
+ "@cspell/dict-typescript": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.1.tgz",
+ "integrity": "sha512-N9vNJZoOXmmrFPR4ir3rGvnqqwmQGgOYoL1+y6D4oIhyr7FhaYiyF/d7QT61RmjZQcATMa6PSL+ZisCeRLx9+A==",
+ "dev": true
+ },
+ "@cspell/dict-vue": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-3.0.0.tgz",
+ "integrity": "sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==",
+ "dev": true
+ },
+ "@cspell/dynamic-import": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/dynamic-import/-/dynamic-import-6.31.1.tgz",
+ "integrity": "sha512-uliIUv9uZlnyYmjUlcw/Dm3p0xJOEnWJNczHAfqAl4Ytg6QZktw0GtUA9b1umbRXLv0KRTPtSC6nMq3cR7rRmQ==",
+ "dev": true,
+ "requires": {
+ "import-meta-resolve": "^2.2.2"
+ }
+ },
+ "@cspell/strong-weak-map": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.31.1.tgz",
+ "integrity": "sha512-z8AuWvUuSnugFKJOA9Ke0aiFuehcqLFqia9bk8XaQNEWr44ahPVn3sEWnAncTxPbpWuUw5UajoJa0egRAE1CCg==",
+ "dev": true
+ },
+ "@es-joy/jsdoccomment": {
+ "version": "0.39.4",
+ "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.39.4.tgz",
+ "integrity": "sha512-Jvw915fjqQct445+yron7Dufix9A+m9j1fCJYlCo1FWlRvTxa3pjJelxdSTdaLWcTwRU6vbL+NYjO4YuNIS5Qg==",
+ "dev": true,
+ "requires": {
+ "comment-parser": "1.3.1",
+ "esquery": "^1.5.0",
+ "jsdoc-type-pratt-parser": "~4.0.0"
+ }
+ },
+ "@eslint-community/eslint-utils": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
+ "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
+ "dev": true,
+ "requires": {
+ "eslint-visitor-keys": "^3.3.0"
+ }
+ },
+ "@eslint-community/regexpp": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz",
+ "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==",
+ "dev": true
+ },
+ "@eslint/eslintrc": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz",
+ "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==",
+ "dev": true,
+ "requires": {
+ "ajv": "^6.12.4",
+ "debug": "^4.3.2",
+ "espree": "^9.5.2",
+ "globals": "^13.19.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "minimatch": "^3.1.2",
+ "strip-json-comments": "^3.1.1"
+ }
+ },
+ "@eslint/js": {
+ "version": "8.41.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz",
+ "integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==",
+ "dev": true
+ },
+ "@humanwhocodes/config-array": {
+ "version": "0.11.8",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
+ "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
+ "dev": true,
+ "requires": {
+ "@humanwhocodes/object-schema": "^1.2.1",
+ "debug": "^4.1.1",
+ "minimatch": "^3.0.5"
+ }
+ },
+ "@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true
+ },
+ "@humanwhocodes/object-schema": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
+ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
+ "dev": true
+ },
+ "@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "requires": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
+ "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true
+ },
+ "emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true
+ },
+ "string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "requires": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ }
+ },
+ "strip-ansi": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz",
+ "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^6.0.1"
+ }
+ },
+ "wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ }
+ }
+ }
+ },
+ "@istanbuljs/load-nyc-config": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
+ "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
+ "dev": true,
+ "requires": {
+ "camelcase": "^5.3.1",
+ "find-up": "^4.1.0",
+ "get-package-type": "^0.1.0",
+ "js-yaml": "^3.13.1",
+ "resolve-from": "^5.0.0"
+ },
+ "dependencies": {
+ "argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "dev": true,
+ "requires": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "dev": true,
+ "requires": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ }
+ }
+ },
+ "@istanbuljs/schema": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
+ "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
+ "dev": true
+ },
+ "@jest/console": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz",
+ "integrity": "sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "jest-message-util": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "slash": "^3.0.0"
+ }
+ },
+ "@jest/core": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz",
+ "integrity": "sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^29.5.0",
+ "@jest/reporters": "^29.5.0",
+ "@jest/test-result": "^29.5.0",
+ "@jest/transform": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "jest-changed-files": "^29.5.0",
+ "jest-config": "^29.5.0",
+ "jest-haste-map": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-regex-util": "^29.4.3",
+ "jest-resolve": "^29.5.0",
+ "jest-resolve-dependencies": "^29.5.0",
+ "jest-runner": "^29.5.0",
+ "jest-runtime": "^29.5.0",
+ "jest-snapshot": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "jest-validate": "^29.5.0",
+ "jest-watcher": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.5.0",
+ "slash": "^3.0.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "@jest/environment": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz",
+ "integrity": "sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==",
+ "dev": true,
+ "requires": {
+ "@jest/fake-timers": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "jest-mock": "^29.5.0"
+ }
+ },
+ "@jest/expect": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz",
+ "integrity": "sha512-PueDR2HGihN3ciUNGr4uelropW7rqUfTiOn+8u0leg/42UhblPxHkfoh0Ruu3I9Y1962P3u2DY4+h7GVTSVU6g==",
+ "dev": true,
+ "requires": {
+ "expect": "^29.5.0",
+ "jest-snapshot": "^29.5.0"
+ }
+ },
+ "@jest/expect-utils": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz",
+ "integrity": "sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==",
+ "dev": true,
+ "requires": {
+ "jest-get-type": "^29.4.3"
+ }
+ },
+ "@jest/fake-timers": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz",
+ "integrity": "sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@sinonjs/fake-timers": "^10.0.2",
+ "@types/node": "*",
+ "jest-message-util": "^29.5.0",
+ "jest-mock": "^29.5.0",
+ "jest-util": "^29.5.0"
+ }
+ },
+ "@jest/globals": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz",
+ "integrity": "sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^29.5.0",
+ "@jest/expect": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "jest-mock": "^29.5.0"
+ }
+ },
+ "@jest/reporters": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz",
+ "integrity": "sha512-D05STXqj/M8bP9hQNSICtPqz97u7ffGzZu+9XLucXhkOFBqKcXe04JLZOgIekOxdb73MAoBUFnqvf7MCpKk5OA==",
+ "dev": true,
+ "requires": {
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@jest/console": "^29.5.0",
+ "@jest/test-result": "^29.5.0",
+ "@jest/transform": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@jridgewell/trace-mapping": "^0.3.15",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "exit": "^0.1.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "istanbul-lib-coverage": "^3.0.0",
+ "istanbul-lib-instrument": "^5.1.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-lib-source-maps": "^4.0.0",
+ "istanbul-reports": "^3.1.3",
+ "jest-message-util": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "jest-worker": "^29.5.0",
+ "slash": "^3.0.0",
+ "string-length": "^4.0.1",
+ "strip-ansi": "^6.0.0",
+ "v8-to-istanbul": "^9.0.1"
+ }
+ },
+ "@jest/schemas": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz",
+ "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==",
+ "dev": true,
+ "requires": {
+ "@sinclair/typebox": "^0.25.16"
+ }
+ },
+ "@jest/source-map": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz",
+ "integrity": "sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==",
+ "dev": true,
+ "requires": {
+ "@jridgewell/trace-mapping": "^0.3.15",
+ "callsites": "^3.0.0",
+ "graceful-fs": "^4.2.9"
+ }
+ },
+ "@jest/test-result": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz",
+ "integrity": "sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "collect-v8-coverage": "^1.0.0"
+ }
+ },
+ "@jest/test-sequencer": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz",
+ "integrity": "sha512-yPafQEcKjkSfDXyvtgiV4pevSeyuA6MQr6ZIdVkWJly9vkqjnFfcfhRQqpD5whjoU8EORki752xQmjaqoFjzMQ==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^29.5.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "slash": "^3.0.0"
+ }
+ },
+ "@jest/transform": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz",
+ "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.5.0",
+ "@jridgewell/trace-mapping": "^0.3.15",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ },
+ "dependencies": {
+ "write-file-atomic": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ }
+ }
+ }
+ },
+ "@jest/types": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz",
+ "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==",
+ "dev": true,
+ "requires": {
+ "@jest/schemas": "^29.4.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@jridgewell/gen-mapping": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
+ "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
+ "dev": true,
+ "requires": {
+ "@jridgewell/set-array": "^1.0.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.9"
+ }
+ },
+ "@jridgewell/resolve-uri": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
+ "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
+ "dev": true
+ },
+ "@jridgewell/set-array": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
+ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
+ "dev": true
+ },
+ "@jridgewell/sourcemap-codec": {
+ "version": "1.4.15",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
+ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
+ "dev": true
+ },
+ "@jridgewell/trace-mapping": {
+ "version": "0.3.18",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
+ "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
+ "dev": true,
+ "requires": {
+ "@jridgewell/resolve-uri": "3.1.0",
+ "@jridgewell/sourcemap-codec": "1.4.14"
+ },
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": {
+ "version": "1.4.14",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
+ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==",
+ "dev": true
+ }
+ }
+ },
+ "@ls-lint/ls-lint": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@ls-lint/ls-lint/-/ls-lint-2.0.0.tgz",
+ "integrity": "sha512-1QEk2tzSH5YBCgP+klCZJvdGHJFNQgJb8qPFpFwQPmvjmZMV0aPE11TZ4qd+BlTcteeCWzs5ewSIOVRx2xT+Lw==",
+ "dev": true
+ },
+ "@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ }
+ },
+ "@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true
+ },
+ "@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ }
+ },
+ "@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "optional": true
+ },
+ "@sinclair/typebox": {
+ "version": "0.25.24",
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz",
+ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==",
+ "dev": true
+ },
+ "@sinonjs/commons": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz",
+ "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==",
+ "dev": true,
+ "requires": {
+ "type-detect": "4.0.8"
+ }
+ },
+ "@sinonjs/fake-timers": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz",
+ "integrity": "sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==",
+ "dev": true,
+ "requires": {
+ "@sinonjs/commons": "^3.0.0"
+ }
+ },
+ "@types/babel__core": {
+ "version": "7.20.1",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz",
+ "integrity": "sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "@types/babel__generator": {
+ "version": "7.6.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz",
+ "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__template": {
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz",
+ "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==",
+ "dev": true,
+ "requires": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "@types/babel__traverse": {
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.0.tgz",
+ "integrity": "sha512-TBOjqAGf0hmaqRwpii5LLkJLg7c6OMm4nHLmpsUxwk9bBHtoTC6dAHdVWdGv4TBxj2CZOZY8Xfq8WmfoVi7n4Q==",
+ "dev": true,
+ "requires": {
+ "@babel/types": "^7.20.7"
+ }
+ },
+ "@types/graceful-fs": {
+ "version": "4.1.6",
+ "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.6.tgz",
+ "integrity": "sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/istanbul-lib-coverage": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz",
+ "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==",
+ "dev": true
+ },
+ "@types/istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-coverage": "*"
+ }
+ },
+ "@types/istanbul-reports": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
+ "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
+ "dev": true,
+ "requires": {
+ "@types/istanbul-lib-report": "*"
+ }
+ },
+ "@types/json-schema": {
+ "version": "7.0.12",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz",
+ "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==",
+ "dev": true
+ },
+ "@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true
+ },
+ "@types/node": {
+ "version": "20.2.5",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz",
+ "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==",
+ "dev": true
+ },
+ "@types/prettier": {
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz",
+ "integrity": "sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg==",
+ "dev": true
+ },
+ "@types/semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==",
+ "dev": true
+ },
+ "@types/stack-utils": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz",
+ "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==",
+ "dev": true
+ },
+ "@types/yargs": {
+ "version": "17.0.24",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
+ "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "dev": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "@types/yargs-parser": {
+ "version": "21.0.0",
+ "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz",
+ "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==",
+ "dev": true
+ },
+ "@typescript-eslint/scope-manager": {
+ "version": "5.59.7",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz",
+ "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "5.59.7",
+ "@typescript-eslint/visitor-keys": "5.59.7"
+ }
+ },
+ "@typescript-eslint/types": {
+ "version": "5.59.7",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz",
+ "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==",
+ "dev": true
+ },
+ "@typescript-eslint/typescript-estree": {
+ "version": "5.59.7",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
+ "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "5.59.7",
+ "@typescript-eslint/visitor-keys": "5.59.7",
+ "debug": "^4.3.4",
+ "globby": "^11.1.0",
+ "is-glob": "^4.0.3",
+ "semver": "^7.3.7",
+ "tsutils": "^3.21.0"
+ }
+ },
+ "@typescript-eslint/utils": {
+ "version": "5.59.7",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.7.tgz",
+ "integrity": "sha512-yCX9WpdQKaLufz5luG4aJbOpdXf/fjwGMcLFXZVPUz3QqLirG5QcwwnIHNf8cjLjxK4qtzTO8udUtMQSAToQnQ==",
+ "dev": true,
+ "requires": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@types/json-schema": "^7.0.9",
+ "@types/semver": "^7.3.12",
+ "@typescript-eslint/scope-manager": "5.59.7",
+ "@typescript-eslint/types": "5.59.7",
+ "@typescript-eslint/typescript-estree": "5.59.7",
+ "eslint-scope": "^5.1.1",
+ "semver": "^7.3.7"
+ },
+ "dependencies": {
+ "eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ }
+ },
+ "estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true
+ }
+ }
+ },
+ "@typescript-eslint/visitor-keys": {
+ "version": "5.59.7",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
+ "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/types": "5.59.7",
+ "eslint-visitor-keys": "^3.3.0"
+ }
+ },
+ "acorn": {
+ "version": "8.8.2",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
+ "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
+ "dev": true
+ },
+ "acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "requires": {}
+ },
+ "ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.21.3"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "dev": true
+ }
+ }
+ },
+ "ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true
+ },
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "anymatch": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "dev": true,
+ "requires": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ }
+ },
+ "are-docs-informative": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz",
+ "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==",
+ "dev": true
+ },
+ "argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true
+ },
+ "array-buffer-byte-length": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
+ "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "is-array-buffer": "^3.0.1"
+ }
+ },
+ "array-includes": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
+ "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4",
+ "get-intrinsic": "^1.1.3",
+ "is-string": "^1.0.7"
+ }
+ },
+ "array-timsort": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz",
+ "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==",
+ "dev": true
+ },
+ "array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "dev": true
+ },
+ "array.prototype.flat": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
+ "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4",
+ "es-shim-unscopables": "^1.0.0"
+ }
+ },
+ "array.prototype.flatmap": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
+ "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4",
+ "es-shim-unscopables": "^1.0.0"
+ }
+ },
+ "astral-regex": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
+ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
+ "dev": true
+ },
+ "available-typed-arrays": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
+ "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
+ "dev": true
+ },
+ "babel-jest": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz",
+ "integrity": "sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==",
+ "dev": true,
+ "requires": {
+ "@jest/transform": "^29.5.0",
+ "@types/babel__core": "^7.1.14",
+ "babel-plugin-istanbul": "^6.1.1",
+ "babel-preset-jest": "^29.5.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "slash": "^3.0.0"
+ }
+ },
+ "babel-plugin-istanbul": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
+ "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
+ "dev": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.0.0",
+ "@istanbuljs/load-nyc-config": "^1.0.0",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-instrument": "^5.0.4",
+ "test-exclude": "^6.0.0"
+ }
+ },
+ "babel-plugin-jest-hoist": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz",
+ "integrity": "sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==",
+ "dev": true,
+ "requires": {
+ "@babel/template": "^7.3.3",
+ "@babel/types": "^7.3.3",
+ "@types/babel__core": "^7.1.14",
+ "@types/babel__traverse": "^7.0.6"
+ }
+ },
+ "babel-preset-current-node-syntax": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz",
+ "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==",
+ "dev": true,
+ "requires": {
+ "@babel/plugin-syntax-async-generators": "^7.8.4",
+ "@babel/plugin-syntax-bigint": "^7.8.3",
+ "@babel/plugin-syntax-class-properties": "^7.8.3",
+ "@babel/plugin-syntax-import-meta": "^7.8.3",
+ "@babel/plugin-syntax-json-strings": "^7.8.3",
+ "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3",
+ "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
+ "@babel/plugin-syntax-numeric-separator": "^7.8.3",
+ "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
+ "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
+ "@babel/plugin-syntax-optional-chaining": "^7.8.3",
+ "@babel/plugin-syntax-top-level-await": "^7.8.3"
+ }
+ },
+ "babel-preset-jest": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz",
+ "integrity": "sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==",
+ "dev": true,
+ "requires": {
+ "babel-plugin-jest-hoist": "^29.5.0",
+ "babel-preset-current-node-syntax": "^1.0.0"
+ }
+ },
+ "balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true
+ },
+ "brace-expansion": {
+ "version": "1.1.11",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
+ "dev": true,
+ "requires": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "braces": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
+ "dev": true,
+ "requires": {
+ "fill-range": "^7.0.1"
+ }
+ },
+ "browserslist": {
+ "version": "4.21.5",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
+ "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30001449",
+ "electron-to-chromium": "^1.4.284",
+ "node-releases": "^2.0.8",
+ "update-browserslist-db": "^1.0.10"
+ }
+ },
+ "bser": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
+ "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
+ "dev": true,
+ "requires": {
+ "node-int64": "^0.4.0"
+ }
+ },
+ "buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "dev": true
+ },
+ "call-bind": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
+ "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "get-intrinsic": "^1.0.2"
+ }
+ },
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true
+ },
+ "camelcase": {
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
+ "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
+ "dev": true
+ },
+ "caniuse-lite": {
+ "version": "1.0.30001489",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz",
+ "integrity": "sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==",
+ "dev": true
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "char-regex": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
+ "dev": true
+ },
+ "ci-info": {
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz",
+ "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==",
+ "dev": true
+ },
+ "cjs-module-lexer": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz",
+ "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==",
+ "dev": true
+ },
+ "clear-module": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz",
+ "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^2.0.0",
+ "resolve-from": "^5.0.0"
+ }
+ },
+ "cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "dev": true,
+ "requires": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "co": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
+ "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
+ "dev": true
+ },
+ "collect-v8-coverage": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz",
+ "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==",
+ "dev": true
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "commander": {
+ "version": "10.0.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
+ "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
+ "dev": true
+ },
+ "comment-json": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.3.tgz",
+ "integrity": "sha512-SsxdiOf064DWoZLH799Ata6u7iV658A11PlWtZATDlXPpKGJnbJZ5Z24ybixAi+LUUqJ/GKowAejtC5GFUG7Tw==",
+ "dev": true,
+ "requires": {
+ "array-timsort": "^1.0.3",
+ "core-util-is": "^1.0.3",
+ "esprima": "^4.0.1",
+ "has-own-prop": "^2.0.0",
+ "repeat-string": "^1.6.1"
+ }
+ },
+ "comment-parser": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.1.tgz",
+ "integrity": "sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==",
+ "dev": true
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true
+ },
+ "configstore": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz",
+ "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==",
+ "dev": true,
+ "requires": {
+ "dot-prop": "^5.2.0",
+ "graceful-fs": "^4.1.2",
+ "make-dir": "^3.0.0",
+ "unique-string": "^2.0.0",
+ "write-file-atomic": "^3.0.0",
+ "xdg-basedir": "^4.0.0"
+ }
+ },
+ "confusing-browser-globals": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
+ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==",
+ "dev": true
+ },
+ "convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true
+ },
+ "core-util-is": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
+ "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
+ "dev": true
+ },
+ "cosmiconfig": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.0.0.tgz",
+ "integrity": "sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==",
+ "dev": true,
+ "requires": {
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0"
+ }
+ },
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "crypto-random-string": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz",
+ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==",
+ "dev": true
+ },
+ "cspell": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.31.1.tgz",
+ "integrity": "sha512-gyCtpkOpwI/TGibbtIgMBFnAUUp2hnYdvW/9Ky4RcneHtLH0+V/jUEbZD8HbRKz0GVZ6mhKWbNRSEyP9p3Cejw==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-pipe": "6.31.1",
+ "@cspell/dynamic-import": "6.31.1",
+ "chalk": "^4.1.2",
+ "commander": "^10.0.0",
+ "cspell-gitignore": "6.31.1",
+ "cspell-glob": "6.31.1",
+ "cspell-io": "6.31.1",
+ "cspell-lib": "6.31.1",
+ "fast-glob": "^3.2.12",
+ "fast-json-stable-stringify": "^2.1.0",
+ "file-entry-cache": "^6.0.1",
+ "get-stdin": "^8.0.0",
+ "imurmurhash": "^0.1.4",
+ "semver": "^7.3.8",
+ "strip-ansi": "^6.0.1",
+ "vscode-uri": "^3.0.7"
+ }
+ },
+ "cspell-dictionary": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.31.1.tgz",
+ "integrity": "sha512-7+K7aQGarqbpucky26wled7QSCJeg6VkLUWS+hLjyf0Cqc9Zew5xsLa4QjReExWUJx+a97jbiflITZNuWxgMrg==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-pipe": "6.31.1",
+ "@cspell/cspell-types": "6.31.1",
+ "cspell-trie-lib": "6.31.1",
+ "fast-equals": "^4.0.3",
+ "gensequence": "^5.0.2"
+ }
+ },
+ "cspell-gitignore": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.31.1.tgz",
+ "integrity": "sha512-PAcmjN6X89Z8qgjem6HYb+VmvVtKuc+fWs4sk21+jv2MiLk23Bkp+8slSaIDVR//58fxJkMx17PHyo2cDO/69A==",
+ "dev": true,
+ "requires": {
+ "cspell-glob": "6.31.1",
+ "find-up": "^5.0.0"
+ }
+ },
+ "cspell-glob": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.31.1.tgz",
+ "integrity": "sha512-ygEmr5hgE4QtO5+L3/ihfMKBhPipbapfS22ilksFSChKMc15Regds0z+z/1ZBoe+OFAPneQfIuBxMwQ/fB00GQ==",
+ "dev": true,
+ "requires": {
+ "micromatch": "^4.0.5"
+ }
+ },
+ "cspell-grammar": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.31.1.tgz",
+ "integrity": "sha512-AsRVP0idcNFVSb9+p9XjMumFj3BUV67WIPWApaAzJl/dYyiIygQObRE+si0/QtFWGNw873b7hNhWZiKjqIdoaQ==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-pipe": "6.31.1",
+ "@cspell/cspell-types": "6.31.1"
+ }
+ },
+ "cspell-io": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.31.1.tgz",
+ "integrity": "sha512-deZcpvTYY/NmLfOdOtzcm+nDvJZozKmj4TY3pPpX0HquPX0A/w42bFRT/zZNmRslFl8vvrCZZUog7SOc6ha3uA==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-service-bus": "6.31.1",
+ "node-fetch": "^2.6.9"
+ }
+ },
+ "cspell-lib": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.31.1.tgz",
+ "integrity": "sha512-KgSiulbLExY+z2jGwkO77+aAkyugsPAw7y07j3hTQLpd+0esPCZqrmbo2ItnkvkDNd/c34PqQCr7/044/rz8gw==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-bundled-dicts": "6.31.1",
+ "@cspell/cspell-pipe": "6.31.1",
+ "@cspell/cspell-types": "6.31.1",
+ "@cspell/strong-weak-map": "6.31.1",
+ "clear-module": "^4.1.2",
+ "comment-json": "^4.2.3",
+ "configstore": "^5.0.1",
+ "cosmiconfig": "8.0.0",
+ "cspell-dictionary": "6.31.1",
+ "cspell-glob": "6.31.1",
+ "cspell-grammar": "6.31.1",
+ "cspell-io": "6.31.1",
+ "cspell-trie-lib": "6.31.1",
+ "fast-equals": "^4.0.3",
+ "find-up": "^5.0.0",
+ "gensequence": "^5.0.2",
+ "import-fresh": "^3.3.0",
+ "resolve-from": "^5.0.0",
+ "resolve-global": "^1.0.0",
+ "vscode-languageserver-textdocument": "^1.0.8",
+ "vscode-uri": "^3.0.7"
+ }
+ },
+ "cspell-trie-lib": {
+ "version": "6.31.1",
+ "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.31.1.tgz",
+ "integrity": "sha512-MtYh7s4Sbr1rKT31P2BK6KY+YfOy3dWsuusq9HnqCXmq6aZ1HyFgjH/9p9uvqGi/TboMqn1KOV8nifhXK3l3jg==",
+ "dev": true,
+ "requires": {
+ "@cspell/cspell-pipe": "6.31.1",
+ "@cspell/cspell-types": "6.31.1",
+ "gensequence": "^5.0.2"
+ }
+ },
+ "debug": {
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
+ "dev": true,
+ "requires": {
+ "ms": "2.1.2"
+ }
+ },
+ "dedent": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
+ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
+ "dev": true
+ },
+ "deep-extend": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
+ "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
+ "dev": true
+ },
+ "deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true
+ },
+ "deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "dev": true
+ },
+ "define-properties": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
+ "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
+ "dev": true,
+ "requires": {
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ }
+ },
+ "detect-newline": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
+ "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
+ "dev": true
+ },
+ "diff-sequences": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz",
+ "integrity": "sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==",
+ "dev": true
+ },
+ "dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "dev": true,
+ "requires": {
+ "path-type": "^4.0.0"
+ }
+ },
+ "doctrine": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "dot-prop": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
+ "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
+ "dev": true,
+ "requires": {
+ "is-obj": "^2.0.0"
+ }
+ },
+ "eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true
+ },
+ "electron-to-chromium": {
+ "version": "1.4.411",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.411.tgz",
+ "integrity": "sha512-5VXLW4Qw89vM2WTICHua/y8v7fKGDRVa2VPOtBB9IpLvW316B+xd8yD1wTmLPY2ot/00P/qt87xdolj4aG/Lzg==",
+ "dev": true
+ },
+ "emittery": {
+ "version": "0.13.1",
+ "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz",
+ "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
+ "dev": true
+ },
+ "emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true
+ },
+ "entities": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz",
+ "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==",
+ "dev": true
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "dev": true,
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "es-abstract": {
+ "version": "1.21.2",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz",
+ "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==",
+ "dev": true,
+ "requires": {
+ "array-buffer-byte-length": "^1.0.0",
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "es-set-tostringtag": "^2.0.1",
+ "es-to-primitive": "^1.2.1",
+ "function.prototype.name": "^1.1.5",
+ "get-intrinsic": "^1.2.0",
+ "get-symbol-description": "^1.0.0",
+ "globalthis": "^1.0.3",
+ "gopd": "^1.0.1",
+ "has": "^1.0.3",
+ "has-property-descriptors": "^1.0.0",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3",
+ "internal-slot": "^1.0.5",
+ "is-array-buffer": "^3.0.2",
+ "is-callable": "^1.2.7",
+ "is-negative-zero": "^2.0.2",
+ "is-regex": "^1.1.4",
+ "is-shared-array-buffer": "^1.0.2",
+ "is-string": "^1.0.7",
+ "is-typed-array": "^1.1.10",
+ "is-weakref": "^1.0.2",
+ "object-inspect": "^1.12.3",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.4",
+ "regexp.prototype.flags": "^1.4.3",
+ "safe-regex-test": "^1.0.0",
+ "string.prototype.trim": "^1.2.7",
+ "string.prototype.trimend": "^1.0.6",
+ "string.prototype.trimstart": "^1.0.6",
+ "typed-array-length": "^1.0.4",
+ "unbox-primitive": "^1.0.2",
+ "which-typed-array": "^1.1.9"
+ }
+ },
+ "es-set-tostringtag": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
+ "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
+ "dev": true,
+ "requires": {
+ "get-intrinsic": "^1.1.3",
+ "has": "^1.0.3",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "es-shim-unscopables": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
+ "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "es-to-primitive": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.4",
+ "is-date-object": "^1.0.1",
+ "is-symbol": "^1.0.2"
+ }
+ },
+ "escalade": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
+ "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
+ "dev": true
+ },
+ "escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true
+ },
+ "eslint": {
+ "version": "8.41.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz",
+ "integrity": "sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==",
+ "dev": true,
+ "requires": {
+ "@eslint-community/eslint-utils": "^4.2.0",
+ "@eslint-community/regexpp": "^4.4.0",
+ "@eslint/eslintrc": "^2.0.3",
+ "@eslint/js": "8.41.0",
+ "@humanwhocodes/config-array": "^0.11.8",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@nodelib/fs.walk": "^1.2.8",
+ "ajv": "^6.10.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.2",
+ "debug": "^4.3.2",
+ "doctrine": "^3.0.0",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^7.2.0",
+ "eslint-visitor-keys": "^3.4.1",
+ "espree": "^9.5.2",
+ "esquery": "^1.4.2",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^6.0.1",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "globals": "^13.19.0",
+ "graphemer": "^1.4.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.0.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "is-path-inside": "^3.0.3",
+ "js-yaml": "^4.1.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "levn": "^0.4.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.2",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.1",
+ "strip-ansi": "^6.0.1",
+ "strip-json-comments": "^3.1.0",
+ "text-table": "^0.2.0"
+ }
+ },
+ "eslint-config-airbnb-base": {
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz",
+ "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==",
+ "dev": true,
+ "requires": {
+ "confusing-browser-globals": "^1.0.10",
+ "object.assign": "^4.1.2",
+ "object.entries": "^1.1.5",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-config-prettier": {
+ "version": "8.8.0",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz",
+ "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==",
+ "dev": true,
+ "requires": {}
+ },
+ "eslint-formatter-codeframe": {
+ "version": "7.32.1",
+ "resolved": "https://registry.npmjs.org/eslint-formatter-codeframe/-/eslint-formatter-codeframe-7.32.1.tgz",
+ "integrity": "sha512-DK/3Q3+zVKq/7PdSYiCxPrsDF8H/TRMK5n8Hziwr4IMkMy+XiKSwbpj25AdajS63I/B61Snetq4uVvX9fOLyAg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "7.12.11",
+ "chalk": "^4.0.0"
+ }
+ },
+ "eslint-formatter-table": {
+ "version": "7.32.1",
+ "resolved": "https://registry.npmjs.org/eslint-formatter-table/-/eslint-formatter-table-7.32.1.tgz",
+ "integrity": "sha512-JYC49hAJMNjLfbgXVeQHU6ngP0M8ThgXCHLGrncYB+R/RHEhRPnLxHjolTJdb7RdQ8zcCt2F7Mrt6Ou3PwMOHw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "table": "^6.0.9"
+ }
+ },
+ "eslint-import-resolver-node": {
+ "version": "0.3.7",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
+ "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.11.0",
+ "resolve": "^1.22.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "eslint-module-utils": {
+ "version": "2.8.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz",
+ "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==",
+ "dev": true,
+ "requires": {
+ "debug": "^3.2.7"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ }
+ }
+ },
+ "eslint-plugin-import": {
+ "version": "2.27.5",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
+ "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
+ "dev": true,
+ "requires": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "array.prototype.flatmap": "^1.3.1",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.7",
+ "eslint-module-utils": "^2.7.4",
+ "has": "^1.0.3",
+ "is-core-module": "^2.11.0",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.values": "^1.1.6",
+ "resolve": "^1.22.1",
+ "semver": "^6.3.0",
+ "tsconfig-paths": "^3.14.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "eslint-plugin-jest": {
+ "version": "27.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz",
+ "integrity": "sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg==",
+ "dev": true,
+ "requires": {
+ "@typescript-eslint/utils": "^5.10.0"
+ }
+ },
+ "eslint-plugin-jsdoc": {
+ "version": "44.2.7",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-44.2.7.tgz",
+ "integrity": "sha512-PcAJO7Wh4xIHPT+StBRpEbWgwCpIrYk75zL31RMbduVVHpgiy3Y8aXQ6pdbRJOq0fxHuepWSEAve8ZrPWTSKRg==",
+ "dev": true,
+ "requires": {
+ "@es-joy/jsdoccomment": "~0.39.4",
+ "are-docs-informative": "^0.0.2",
+ "comment-parser": "1.3.1",
+ "debug": "^4.3.4",
+ "escape-string-regexp": "^4.0.0",
+ "esquery": "^1.5.0",
+ "semver": "^7.5.1",
+ "spdx-expression-parse": "^3.0.1"
+ }
+ },
+ "eslint-plugin-prefer-arrow": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-prefer-arrow/-/eslint-plugin-prefer-arrow-1.2.3.tgz",
+ "integrity": "sha512-J9I5PKCOJretVuiZRGvPQxCbllxGAV/viI20JO3LYblAodofBxyMnZAJ+WGeClHgANnSJberTNoFWWjrWKBuXQ==",
+ "dev": true,
+ "requires": {}
+ },
+ "eslint-plugin-prettier": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz",
+ "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==",
+ "dev": true,
+ "requires": {
+ "prettier-linter-helpers": "^1.0.0"
+ }
+ },
+ "eslint-plugin-sonarjs": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.19.0.tgz",
+ "integrity": "sha512-6+s5oNk5TFtVlbRxqZN7FIGmjdPCYQKaTzFPmqieCmsU1kBYDzndTeQav0xtQNwZJWu5awWfTGe8Srq9xFOGnw==",
+ "dev": true,
+ "requires": {}
+ },
+ "eslint-scope": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz",
+ "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==",
+ "dev": true,
+ "requires": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ }
+ },
+ "eslint-visitor-keys": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz",
+ "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==",
+ "dev": true
+ },
+ "espree": {
+ "version": "9.5.2",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz",
+ "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==",
+ "dev": true,
+ "requires": {
+ "acorn": "^8.8.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^3.4.1"
+ }
+ },
+ "esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "dev": true
+ },
+ "esquery": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
+ "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^5.1.0"
+ }
+ },
+ "esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "requires": {
+ "estraverse": "^5.2.0"
+ }
+ },
+ "estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true
+ },
+ "esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true
+ },
+ "execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "exit": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
+ "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
+ "dev": true
+ },
+ "expect": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz",
+ "integrity": "sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==",
+ "dev": true,
+ "requires": {
+ "@jest/expect-utils": "^29.5.0",
+ "jest-get-type": "^29.4.3",
+ "jest-matcher-utils": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-util": "^29.5.0"
+ }
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true
+ },
+ "fast-diff": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
+ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==",
+ "dev": true
+ },
+ "fast-equals": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-4.0.3.tgz",
+ "integrity": "sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==",
+ "dev": true
+ },
+ "fast-glob": {
+ "version": "3.2.12",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
+ "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
+ "dev": true,
+ "requires": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "dependencies": {
+ "glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ }
+ }
+ },
+ "fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true
+ },
+ "fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true
+ },
+ "fastq": {
+ "version": "1.15.0",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
+ "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
+ "dev": true,
+ "requires": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "fb-watchman": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
+ "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
+ "dev": true,
+ "requires": {
+ "bser": "2.1.1"
+ }
+ },
+ "file-entry-cache": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
+ "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
+ "dev": true,
+ "requires": {
+ "flat-cache": "^3.0.4"
+ }
+ },
+ "fill-range": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
+ "dev": true,
+ "requires": {
+ "to-regex-range": "^5.0.1"
+ }
+ },
+ "find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "flat-cache": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
+ "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
+ "dev": true,
+ "requires": {
+ "flatted": "^3.1.0",
+ "rimraf": "^3.0.2"
+ }
+ },
+ "flatted": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
+ "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
+ "dev": true
+ },
+ "for-each": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
+ "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
+ "dev": true,
+ "requires": {
+ "is-callable": "^1.1.3"
+ }
+ },
+ "foreground-child": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz",
+ "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==",
+ "dev": true,
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^4.0.1"
+ },
+ "dependencies": {
+ "signal-exit": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz",
+ "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==",
+ "dev": true
+ }
+ }
+ },
+ "fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "dev": true
+ },
+ "fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "dev": true,
+ "optional": true
+ },
+ "function-bind": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
+ "dev": true
+ },
+ "function.prototype.name": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
+ "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.19.0",
+ "functions-have-names": "^1.2.2"
+ }
+ },
+ "functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "dev": true
+ },
+ "gensequence": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-5.0.2.tgz",
+ "integrity": "sha512-JlKEZnFc6neaeSVlkzBGGgkIoIaSxMgvdamRoPN8r3ozm2r9dusqxeKqYQ7lhzmj2UhFQP8nkyfCaiLQxiLrDA==",
+ "dev": true
+ },
+ "gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true
+ },
+ "get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true
+ },
+ "get-intrinsic": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
+ "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1",
+ "has": "^1.0.3",
+ "has-proto": "^1.0.1",
+ "has-symbols": "^1.0.3"
+ }
+ },
+ "get-package-type": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
+ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
+ "dev": true
+ },
+ "get-stdin": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz",
+ "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==",
+ "dev": true
+ },
+ "get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "dev": true
+ },
+ "get-symbol-description": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
+ "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.1"
+ }
+ },
+ "glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dev": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "requires": {
+ "is-glob": "^4.0.3"
+ }
+ },
+ "global-dirs": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz",
+ "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==",
+ "dev": true,
+ "requires": {
+ "ini": "^1.3.4"
+ }
+ },
+ "globals": {
+ "version": "13.20.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
+ "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.20.2"
+ }
+ },
+ "globalthis": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
+ "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
+ "dev": true,
+ "requires": {
+ "define-properties": "^1.1.3"
+ }
+ },
+ "globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "dev": true,
+ "requires": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ }
+ },
+ "gopd": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
+ "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
+ "dev": true,
+ "requires": {
+ "get-intrinsic": "^1.1.3"
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true
+ },
+ "graphemer": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
+ "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
+ "dev": true
+ },
+ "has": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
+ "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
+ "dev": true,
+ "requires": {
+ "function-bind": "^1.1.1"
+ }
+ },
+ "has-bigints": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
+ "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
+ "dev": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "has-own-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz",
+ "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==",
+ "dev": true
+ },
+ "has-property-descriptors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
+ "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
+ "dev": true,
+ "requires": {
+ "get-intrinsic": "^1.1.1"
+ }
+ },
+ "has-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
+ "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
+ "dev": true
+ },
+ "has-symbols": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
+ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
+ "dev": true
+ },
+ "has-tostringtag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
+ "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "html-escaper": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
+ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
+ "dev": true
+ },
+ "human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "dev": true
+ },
+ "ignore": {
+ "version": "5.2.4",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
+ "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
+ "dev": true
+ },
+ "import-fresh": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "dev": true,
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "dependencies": {
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.0.0"
+ }
+ },
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true
+ }
+ }
+ },
+ "import-local": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz",
+ "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==",
+ "dev": true,
+ "requires": {
+ "pkg-dir": "^4.2.0",
+ "resolve-cwd": "^3.0.0"
+ }
+ },
+ "import-meta-resolve": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.2.tgz",
+ "integrity": "sha512-f8KcQ1D80V7RnqVm+/lirO9zkOxjGxhaTC1IPrBGd3MEfNgmNG67tSUO9gTi2F3Blr2Az6g1vocaxzkVnWl9MA==",
+ "dev": true
+ },
+ "imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true
+ },
+ "inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "dev": true,
+ "requires": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "dev": true
+ },
+ "ini": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
+ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
+ "dev": true
+ },
+ "internal-slot": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz",
+ "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==",
+ "dev": true,
+ "requires": {
+ "get-intrinsic": "^1.2.0",
+ "has": "^1.0.3",
+ "side-channel": "^1.0.4"
+ }
+ },
+ "is-array-buffer": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz",
+ "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.2.0",
+ "is-typed-array": "^1.1.10"
+ }
+ },
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
+ "dev": true
+ },
+ "is-bigint": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
+ "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
+ "dev": true,
+ "requires": {
+ "has-bigints": "^1.0.1"
+ }
+ },
+ "is-boolean-object": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
+ "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "dev": true
+ },
+ "is-core-module": {
+ "version": "2.12.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
+ "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
+ "dev": true,
+ "requires": {
+ "has": "^1.0.3"
+ }
+ },
+ "is-date-object": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
+ "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true
+ },
+ "is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true
+ },
+ "is-generator-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
+ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
+ "dev": true
+ },
+ "is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
+ "is-negative-zero": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
+ "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
+ "dev": true
+ },
+ "is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true
+ },
+ "is-number-object": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
+ "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "dev": true
+ },
+ "is-path-inside": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
+ "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
+ "dev": true
+ },
+ "is-regex": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
+ "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-shared-array-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
+ "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "dev": true
+ },
+ "is-string": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
+ "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
+ "dev": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-symbol": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
+ "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
+ "dev": true,
+ "requires": {
+ "has-symbols": "^1.0.2"
+ }
+ },
+ "is-typed-array": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
+ "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
+ "dev": true,
+ "requires": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-tostringtag": "^1.0.0"
+ }
+ },
+ "is-typedarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
+ "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
+ "dev": true
+ },
+ "is-weakref": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
+ "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2"
+ }
+ },
+ "isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true
+ },
+ "istanbul-lib-coverage": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz",
+ "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==",
+ "dev": true
+ },
+ "istanbul-lib-instrument": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
+ "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.12.3",
+ "@babel/parser": "^7.14.7",
+ "@istanbuljs/schema": "^0.1.2",
+ "istanbul-lib-coverage": "^3.2.0",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "istanbul-lib-report": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
+ "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==",
+ "dev": true,
+ "requires": {
+ "istanbul-lib-coverage": "^3.0.0",
+ "make-dir": "^3.0.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "istanbul-lib-source-maps": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
+ "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
+ "dev": true,
+ "requires": {
+ "debug": "^4.1.1",
+ "istanbul-lib-coverage": "^3.0.0",
+ "source-map": "^0.6.1"
+ }
+ },
+ "istanbul-reports": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz",
+ "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==",
+ "dev": true,
+ "requires": {
+ "html-escaper": "^2.0.0",
+ "istanbul-lib-report": "^3.0.0"
+ }
+ },
+ "jackspeak": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz",
+ "integrity": "sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==",
+ "dev": true,
+ "requires": {
+ "@isaacs/cliui": "^8.0.2",
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "jest": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz",
+ "integrity": "sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "import-local": "^3.0.2",
+ "jest-cli": "^29.5.0"
+ }
+ },
+ "jest-changed-files": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz",
+ "integrity": "sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==",
+ "dev": true,
+ "requires": {
+ "execa": "^5.0.0",
+ "p-limit": "^3.1.0"
+ }
+ },
+ "jest-circus": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz",
+ "integrity": "sha512-gq/ongqeQKAplVxqJmbeUOJJKkW3dDNPY8PjhJ5G0lBRvu0e3EWGxGy5cI4LAGA7gV2UHCtWBI4EMXK8c9nQKA==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^29.5.0",
+ "@jest/expect": "^29.5.0",
+ "@jest/test-result": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "co": "^4.6.0",
+ "dedent": "^0.7.0",
+ "is-generator-fn": "^2.0.0",
+ "jest-each": "^29.5.0",
+ "jest-matcher-utils": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-runtime": "^29.5.0",
+ "jest-snapshot": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "p-limit": "^3.1.0",
+ "pretty-format": "^29.5.0",
+ "pure-rand": "^6.0.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ }
+ },
+ "jest-cli": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz",
+ "integrity": "sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==",
+ "dev": true,
+ "requires": {
+ "@jest/core": "^29.5.0",
+ "@jest/test-result": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "chalk": "^4.0.0",
+ "exit": "^0.1.2",
+ "graceful-fs": "^4.2.9",
+ "import-local": "^3.0.2",
+ "jest-config": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "jest-validate": "^29.5.0",
+ "prompts": "^2.0.1",
+ "yargs": "^17.3.1"
+ }
+ },
+ "jest-config": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz",
+ "integrity": "sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@jest/test-sequencer": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "babel-jest": "^29.5.0",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "deepmerge": "^4.2.2",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-circus": "^29.5.0",
+ "jest-environment-node": "^29.5.0",
+ "jest-get-type": "^29.4.3",
+ "jest-regex-util": "^29.4.3",
+ "jest-resolve": "^29.5.0",
+ "jest-runner": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "jest-validate": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "parse-json": "^5.2.0",
+ "pretty-format": "^29.5.0",
+ "slash": "^3.0.0",
+ "strip-json-comments": "^3.1.1"
+ }
+ },
+ "jest-diff": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz",
+ "integrity": "sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "diff-sequences": "^29.4.3",
+ "jest-get-type": "^29.4.3",
+ "pretty-format": "^29.5.0"
+ }
+ },
+ "jest-docblock": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz",
+ "integrity": "sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==",
+ "dev": true,
+ "requires": {
+ "detect-newline": "^3.0.0"
+ }
+ },
+ "jest-each": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz",
+ "integrity": "sha512-HM5kIJ1BTnVt+DQZ2ALp3rzXEl+g726csObrW/jpEGl+CDSSQpOJJX2KE/vEg8cxcMXdyEPu6U4QX5eruQv5hA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "pretty-format": "^29.5.0"
+ }
+ },
+ "jest-environment-node": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz",
+ "integrity": "sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^29.5.0",
+ "@jest/fake-timers": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "jest-mock": "^29.5.0",
+ "jest-util": "^29.5.0"
+ }
+ },
+ "jest-get-type": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz",
+ "integrity": "sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==",
+ "dev": true
+ },
+ "jest-haste-map": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz",
+ "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "jest-worker": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ }
+ },
+ "jest-leak-detector": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz",
+ "integrity": "sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==",
+ "dev": true,
+ "requires": {
+ "jest-get-type": "^29.4.3",
+ "pretty-format": "^29.5.0"
+ }
+ },
+ "jest-matcher-utils": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz",
+ "integrity": "sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "jest-diff": "^29.5.0",
+ "jest-get-type": "^29.4.3",
+ "pretty-format": "^29.5.0"
+ }
+ },
+ "jest-message-util": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz",
+ "integrity": "sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.12.13",
+ "@jest/types": "^29.5.0",
+ "@types/stack-utils": "^2.0.0",
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "micromatch": "^4.0.4",
+ "pretty-format": "^29.5.0",
+ "slash": "^3.0.0",
+ "stack-utils": "^2.0.3"
+ },
+ "dependencies": {
+ "@babel/code-frame": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
+ "dev": true,
+ "requires": {
+ "@babel/highlight": "^7.18.6"
+ }
+ }
+ }
+ },
+ "jest-mock": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz",
+ "integrity": "sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "jest-util": "^29.5.0"
+ }
+ },
+ "jest-pnp-resolver": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
+ "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
+ "dev": true,
+ "requires": {}
+ },
+ "jest-regex-util": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz",
+ "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==",
+ "dev": true
+ },
+ "jest-resolve": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz",
+ "integrity": "sha512-1TzxJ37FQq7J10jPtQjcc+MkCkE3GBpBecsSUWJ0qZNJpmg6m0D9/7II03yJulm3H/fvVjgqLh/k2eYg+ui52w==",
+ "dev": true,
+ "requires": {
+ "chalk": "^4.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "jest-pnp-resolver": "^1.2.2",
+ "jest-util": "^29.5.0",
+ "jest-validate": "^29.5.0",
+ "resolve": "^1.20.0",
+ "resolve.exports": "^2.0.0",
+ "slash": "^3.0.0"
+ }
+ },
+ "jest-resolve-dependencies": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz",
+ "integrity": "sha512-sjV3GFr0hDJMBpYeUuGduP+YeCRbd7S/ck6IvL3kQ9cpySYKqcqhdLLC2rFwrcL7tz5vYibomBrsFYWkIGGjOg==",
+ "dev": true,
+ "requires": {
+ "jest-regex-util": "^29.4.3",
+ "jest-snapshot": "^29.5.0"
+ }
+ },
+ "jest-runner": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz",
+ "integrity": "sha512-m7b6ypERhFghJsslMLhydaXBiLf7+jXy8FwGRHO3BGV1mcQpPbwiqiKUR2zU2NJuNeMenJmlFZCsIqzJCTeGLQ==",
+ "dev": true,
+ "requires": {
+ "@jest/console": "^29.5.0",
+ "@jest/environment": "^29.5.0",
+ "@jest/test-result": "^29.5.0",
+ "@jest/transform": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "graceful-fs": "^4.2.9",
+ "jest-docblock": "^29.4.3",
+ "jest-environment-node": "^29.5.0",
+ "jest-haste-map": "^29.5.0",
+ "jest-leak-detector": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-resolve": "^29.5.0",
+ "jest-runtime": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "jest-watcher": "^29.5.0",
+ "jest-worker": "^29.5.0",
+ "p-limit": "^3.1.0",
+ "source-map-support": "0.5.13"
+ }
+ },
+ "jest-runtime": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz",
+ "integrity": "sha512-1Hr6Hh7bAgXQP+pln3homOiEZtCDZFqwmle7Ew2j8OlbkIu6uE3Y/etJQG8MLQs3Zy90xrp2C0BRrtPHG4zryw==",
+ "dev": true,
+ "requires": {
+ "@jest/environment": "^29.5.0",
+ "@jest/fake-timers": "^29.5.0",
+ "@jest/globals": "^29.5.0",
+ "@jest/source-map": "^29.4.3",
+ "@jest/test-result": "^29.5.0",
+ "@jest/transform": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "cjs-module-lexer": "^1.0.0",
+ "collect-v8-coverage": "^1.0.0",
+ "glob": "^7.1.3",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-mock": "^29.5.0",
+ "jest-regex-util": "^29.4.3",
+ "jest-resolve": "^29.5.0",
+ "jest-snapshot": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "slash": "^3.0.0",
+ "strip-bom": "^4.0.0"
+ }
+ },
+ "jest-snapshot": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz",
+ "integrity": "sha512-x7Wolra5V0tt3wRs3/ts3S6ciSQVypgGQlJpz2rsdQYoUKxMxPNaoHMGJN6qAuPJqS+2iQ1ZUn5kl7HCyls84g==",
+ "dev": true,
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@babel/generator": "^7.7.2",
+ "@babel/plugin-syntax-jsx": "^7.7.2",
+ "@babel/plugin-syntax-typescript": "^7.7.2",
+ "@babel/traverse": "^7.7.2",
+ "@babel/types": "^7.3.3",
+ "@jest/expect-utils": "^29.5.0",
+ "@jest/transform": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/babel__traverse": "^7.0.6",
+ "@types/prettier": "^2.1.5",
+ "babel-preset-current-node-syntax": "^1.0.0",
+ "chalk": "^4.0.0",
+ "expect": "^29.5.0",
+ "graceful-fs": "^4.2.9",
+ "jest-diff": "^29.5.0",
+ "jest-get-type": "^29.4.3",
+ "jest-matcher-utils": "^29.5.0",
+ "jest-message-util": "^29.5.0",
+ "jest-util": "^29.5.0",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^29.5.0",
+ "semver": "^7.3.5"
+ }
+ },
+ "jest-util": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz",
+ "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "jest-validate": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz",
+ "integrity": "sha512-pC26etNIi+y3HV8A+tUGr/lph9B18GnzSRAkPaaZJIE1eFdiYm6/CewuiJQ8/RlfHd1u/8Ioi8/sJ+CmbA+zAQ==",
+ "dev": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.0.0",
+ "jest-get-type": "^29.4.3",
+ "leven": "^3.1.0",
+ "pretty-format": "^29.5.0"
+ },
+ "dependencies": {
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "dev": true
+ }
+ }
+ },
+ "jest-watcher": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.5.0.tgz",
+ "integrity": "sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==",
+ "dev": true,
+ "requires": {
+ "@jest/test-result": "^29.5.0",
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.0.0",
+ "emittery": "^0.13.1",
+ "jest-util": "^29.5.0",
+ "string-length": "^4.0.1"
+ }
+ },
+ "jest-worker": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz",
+ "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==",
+ "dev": true,
+ "requires": {
+ "@types/node": "*",
+ "jest-util": "^29.5.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true
+ },
+ "js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "dev": true,
+ "requires": {
+ "argparse": "^2.0.1"
+ }
+ },
+ "jsdoc-type-pratt-parser": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz",
+ "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==",
+ "dev": true
+ },
+ "jsesc": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
+ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
+ "dev": true
+ },
+ "json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "dev": true
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true
+ },
+ "json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true
+ },
+ "json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true
+ },
+ "jsonc-parser": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz",
+ "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==",
+ "dev": true
+ },
+ "kleur": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
+ "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
+ "dev": true
+ },
+ "leven": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
+ "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
+ "dev": true
+ },
+ "levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ }
+ },
+ "lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "dev": true
+ },
+ "linkify-it": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz",
+ "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==",
+ "dev": true,
+ "requires": {
+ "uc.micro": "^1.0.1"
+ }
+ },
+ "locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^5.0.0"
+ }
+ },
+ "lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true
+ },
+ "lodash.truncate": {
+ "version": "4.4.2",
+ "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz",
+ "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==",
+ "dev": true
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "requires": {
+ "semver": "^6.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "dev": true
+ }
+ }
+ },
+ "makeerror": {
+ "version": "1.0.12",
+ "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
+ "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
+ "dev": true,
+ "requires": {
+ "tmpl": "1.0.5"
+ }
+ },
+ "markdown-it": {
+ "version": "13.0.1",
+ "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz",
+ "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==",
+ "dev": true,
+ "requires": {
+ "argparse": "^2.0.1",
+ "entities": "~3.0.1",
+ "linkify-it": "^4.0.1",
+ "mdurl": "^1.0.1",
+ "uc.micro": "^1.0.5"
+ }
+ },
+ "markdownlint": {
+ "version": "0.28.2",
+ "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.28.2.tgz",
+ "integrity": "sha512-yYaQXoKKPV1zgrFsyAuZPEQoe+JrY9GDag9ObKpk09twx4OCU5lut+0/kZPrQ3W7w82SmgKhd7D8m34aG1unVw==",
+ "dev": true,
+ "requires": {
+ "markdown-it": "13.0.1",
+ "markdownlint-micromark": "0.1.2"
+ }
+ },
+ "markdownlint-cli": {
+ "version": "0.34.0",
+ "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.34.0.tgz",
+ "integrity": "sha512-4G9I++VBTZkaye6Yfc/7dU6HQHcyldZEVB+bYyQJLcpJOHKk/q5ZpGqK80oKMIdlxzsA3aWOJLZ4DkoaoUWXbQ==",
+ "dev": true,
+ "requires": {
+ "commander": "~10.0.1",
+ "get-stdin": "~9.0.0",
+ "glob": "~10.2.2",
+ "ignore": "~5.2.4",
+ "js-yaml": "^4.1.0",
+ "jsonc-parser": "~3.2.0",
+ "markdownlint": "~0.28.2",
+ "minimatch": "~9.0.0",
+ "run-con": "~1.2.11"
+ },
+ "dependencies": {
+ "brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "dev": true,
+ "requires": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "get-stdin": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz",
+ "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==",
+ "dev": true
+ },
+ "glob": {
+ "version": "10.2.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.2.6.tgz",
+ "integrity": "sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==",
+ "dev": true,
+ "requires": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^2.0.3",
+ "minimatch": "^9.0.1",
+ "minipass": "^5.0.0 || ^6.0.2",
+ "path-scurry": "^1.7.0"
+ }
+ },
+ "minimatch": {
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz",
+ "integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==",
+ "dev": true,
+ "requires": {
+ "brace-expansion": "^2.0.1"
+ }
+ }
+ }
+ },
+ "markdownlint-micromark": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/markdownlint-micromark/-/markdownlint-micromark-0.1.2.tgz",
+ "integrity": "sha512-jRxlQg8KpOfM2IbCL9RXM8ZiYWz2rv6DlZAnGv8ASJQpUh6byTBnEsbuMZ6T2/uIgntyf7SKg/mEaEBo1164fQ==",
+ "dev": true
+ },
+ "mdurl": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
+ "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==",
+ "dev": true
+ },
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "dev": true
+ },
+ "merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true
+ },
+ "micromatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
+ "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
+ "dev": true,
+ "requires": {
+ "braces": "^3.0.2",
+ "picomatch": "^2.3.1"
+ }
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "dev": true
+ },
+ "minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "dev": true
+ },
+ "minipass": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz",
+ "integrity": "sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==",
+ "dev": true
+ },
+ "misc-utils-of-mine-typescript": {
+ "version": "0.0.12",
+ "resolved": "https://registry.npmjs.org/misc-utils-of-mine-typescript/-/misc-utils-of-mine-typescript-0.0.12.tgz",
+ "integrity": "sha512-dWSZkMkOHLrNmIotlVw+VOSV5pGgck8xETUmu9CQPlYlw1UkjUu+/mn954hHNb1Vq2C7xigZSrhJoqTaavrMmw==",
+ "dev": true
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
+ "dev": true
+ },
+ "natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true
+ },
+ "node-fetch": {
+ "version": "2.6.11",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz",
+ "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==",
+ "dev": true,
+ "requires": {
+ "whatwg-url": "^5.0.0"
+ }
+ },
+ "node-int64": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
+ "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
+ "dev": true
+ },
+ "node-releases": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz",
+ "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==",
+ "dev": true
+ },
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
+ "dev": true
+ },
+ "npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "dev": true,
+ "requires": {
+ "path-key": "^3.0.0"
+ }
+ },
+ "object-inspect": {
+ "version": "1.12.3",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
+ "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
+ "dev": true
+ },
+ "object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true
+ },
+ "object.assign": {
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
+ "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "has-symbols": "^1.0.3",
+ "object-keys": "^1.1.1"
+ }
+ },
+ "object.entries": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
+ "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4"
+ }
+ },
+ "object.values": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
+ "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4"
+ }
+ },
+ "once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "dev": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ },
+ "onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "dev": true,
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "optionator": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
+ "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
+ "dev": true,
+ "requires": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.3"
+ }
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "requires": {
+ "yocto-queue": "^0.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^3.0.2"
+ }
+ },
+ "p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "dev": true
+ },
+ "parent-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz",
+ "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==",
+ "dev": true,
+ "requires": {
+ "callsites": "^3.1.0"
+ }
+ },
+ "parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "dev": true,
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true
+ },
+ "path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "dev": true
+ },
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true
+ },
+ "path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true
+ },
+ "path-scurry": {
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz",
+ "integrity": "sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^9.1.1",
+ "minipass": "^5.0.0 || ^6.0.2"
+ },
+ "dependencies": {
+ "lru-cache": {
+ "version": "9.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz",
+ "integrity": "sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==",
+ "dev": true
+ }
+ }
+ },
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "dev": true
+ },
+ "picocolors": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
+ "dev": true
+ },
+ "picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "dev": true
+ },
+ "pirates": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz",
+ "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==",
+ "dev": true
+ },
+ "pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "dev": true,
+ "requires": {
+ "find-up": "^4.0.0"
+ },
+ "dependencies": {
+ "find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "requires": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "requires": {
+ "p-locate": "^4.1.0"
+ }
+ },
+ "p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "dev": true,
+ "requires": {
+ "p-try": "^2.0.0"
+ }
+ },
+ "p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "requires": {
+ "p-limit": "^2.2.0"
+ }
+ }
+ }
+ },
+ "prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true
+ },
+ "prettier": {
+ "version": "2.8.8",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
+ "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
+ "dev": true
+ },
+ "prettier-linter-helpers": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
+ "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
+ "dev": true,
+ "requires": {
+ "fast-diff": "^1.1.2"
+ }
+ },
+ "pretty-format": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz",
+ "integrity": "sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==",
+ "dev": true,
+ "requires": {
+ "@jest/schemas": "^29.4.3",
+ "ansi-styles": "^5.0.0",
+ "react-is": "^18.0.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
+ "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
+ "dev": true
+ }
+ }
+ },
+ "prompts": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
+ "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
+ "dev": true,
+ "requires": {
+ "kleur": "^3.0.3",
+ "sisteransi": "^1.0.5"
+ }
+ },
+ "punycode": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
+ "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
+ "dev": true
+ },
+ "pure-rand": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.2.tgz",
+ "integrity": "sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==",
+ "dev": true
+ },
+ "queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true
+ },
+ "react-is": {
+ "version": "18.2.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz",
+ "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==",
+ "dev": true
+ },
+ "regexp.prototype.flags": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
+ "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.2.0",
+ "functions-have-names": "^1.2.3"
+ }
+ },
+ "repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==",
+ "dev": true
+ },
+ "require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "dev": true
+ },
+ "require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "dev": true
+ },
+ "resolve": {
+ "version": "1.22.2",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
+ "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
+ "dev": true,
+ "requires": {
+ "is-core-module": "^2.11.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ }
+ },
+ "resolve-cwd": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
+ "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
+ "dev": true,
+ "requires": {
+ "resolve-from": "^5.0.0"
+ }
+ },
+ "resolve-from": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "dev": true
+ },
+ "resolve-global": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz",
+ "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==",
+ "dev": true,
+ "requires": {
+ "global-dirs": "^0.1.1"
+ }
+ },
+ "resolve.exports": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz",
+ "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==",
+ "dev": true
+ },
+ "reusify": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
+ "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "dev": true
+ },
+ "rimraf": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
+ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
+ "dev": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "run-con": {
+ "version": "1.2.11",
+ "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.11.tgz",
+ "integrity": "sha512-NEMGsUT+cglWkzEr4IFK21P4Jca45HqiAbIIZIBdX5+UZTB24Mb/21iNGgz9xZa8tL6vbW7CXmq7MFN42+VjNQ==",
+ "dev": true,
+ "requires": {
+ "deep-extend": "^0.6.0",
+ "ini": "~3.0.0",
+ "minimist": "^1.2.6",
+ "strip-json-comments": "~3.1.1"
+ },
+ "dependencies": {
+ "ini": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz",
+ "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==",
+ "dev": true
+ }
+ }
+ },
+ "run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "requires": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "safe-regex-test": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
+ "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.3",
+ "is-regex": "^1.1.4"
+ }
+ },
+ "semver": {
+ "version": "7.5.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz",
+ "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==",
+ "dev": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ },
+ "dependencies": {
+ "lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ },
+ "yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true
+ }
+ }
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true
+ },
+ "side-channel": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
+ "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "get-intrinsic": "^1.0.2",
+ "object-inspect": "^1.9.0"
+ }
+ },
+ "signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "dev": true
+ },
+ "sisteransi": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
+ "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
+ "dev": true
+ },
+ "slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "dev": true
+ },
+ "slice-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz",
+ "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "astral-regex": "^2.0.0",
+ "is-fullwidth-code-point": "^3.0.0"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true
+ },
+ "source-map-support": {
+ "version": "0.5.13",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
+ "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
+ "dev": true,
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "spdx-exceptions": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==",
+ "dev": true
+ },
+ "spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "dev": true,
+ "requires": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "spdx-license-ids": {
+ "version": "3.0.13",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz",
+ "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==",
+ "dev": true
+ },
+ "sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
+ "dev": true
+ },
+ "stack-utils": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
+ "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
+ "dev": true,
+ "requires": {
+ "escape-string-regexp": "^2.0.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
+ "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
+ "dev": true
+ }
+ }
+ },
+ "string-length": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
+ "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
+ "dev": true,
+ "requires": {
+ "char-regex": "^1.0.2",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "string-width-cjs": {
+ "version": "npm:string-width@4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "requires": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ }
+ },
+ "string.prototype.trim": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
+ "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4"
+ }
+ },
+ "string.prototype.trimend": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
+ "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4"
+ }
+ },
+ "string.prototype.trimstart": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
+ "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "define-properties": "^1.1.4",
+ "es-abstract": "^1.20.4"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
+ "strip-ansi-cjs": {
+ "version": "npm:strip-ansi@6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
+ "strip-bom": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
+ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
+ "dev": true
+ },
+ "strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "dev": true
+ },
+ "strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "dev": true
+ },
+ "table": {
+ "version": "6.8.1",
+ "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz",
+ "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==",
+ "dev": true,
+ "requires": {
+ "ajv": "^8.0.1",
+ "lodash.truncate": "^4.4.2",
+ "slice-ansi": "^4.0.0",
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1"
+ },
+ "dependencies": {
+ "ajv": {
+ "version": "8.12.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
+ "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==",
+ "dev": true,
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "dev": true
+ }
+ }
+ },
+ "test-exclude": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
+ "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
+ "dev": true,
+ "requires": {
+ "@istanbuljs/schema": "^0.1.2",
+ "glob": "^7.1.4",
+ "minimatch": "^3.0.4"
+ }
+ },
+ "text-table": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
+ "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
+ "dev": true
+ },
+ "tmpl": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
+ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
+ "dev": true
+ },
+ "to-fast-properties": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
+ "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
+ "dev": true
+ },
+ "to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "requires": {
+ "is-number": "^7.0.0"
+ }
+ },
+ "tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "dev": true
+ },
+ "tsconfig-paths": {
+ "version": "3.14.2",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
+ "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
+ "dev": true,
+ "requires": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ },
+ "strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true
+ }
+ }
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "dev": true
+ },
+ "tsutils": {
+ "version": "3.21.0",
+ "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
+ "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
+ "dev": true,
+ "requires": {
+ "tslib": "^1.8.1"
+ }
+ },
+ "type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "^1.2.1"
+ }
+ },
+ "type-detect": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
+ "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
+ "dev": true
+ },
+ "type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true
+ },
+ "typed-array-length": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
+ "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "is-typed-array": "^1.1.9"
+ }
+ },
+ "typedarray-to-buffer": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
+ "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
+ "dev": true,
+ "requires": {
+ "is-typedarray": "^1.0.0"
+ }
+ },
+ "typescript": {
+ "version": "5.0.4",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz",
+ "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==",
+ "dev": true,
+ "peer": true
+ },
+ "uc.micro": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz",
+ "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==",
+ "dev": true
+ },
+ "unbox-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
+ "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
+ "dev": true,
+ "requires": {
+ "call-bind": "^1.0.2",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.0.3",
+ "which-boxed-primitive": "^1.0.2"
+ }
+ },
+ "unique-string": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz",
+ "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==",
+ "dev": true,
+ "requires": {
+ "crypto-random-string": "^2.0.0"
+ }
+ },
+ "update-browserslist-db": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
+ "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "dev": true,
+ "requires": {
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ }
+ },
+ "uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "requires": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "v8-to-istanbul": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz",
+ "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==",
+ "dev": true,
+ "requires": {
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0"
+ },
+ "dependencies": {
+ "convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+ "dev": true
+ }
+ }
+ },
+ "vscode-languageserver-textdocument": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz",
+ "integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==",
+ "dev": true
+ },
+ "vscode-uri": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.7.tgz",
+ "integrity": "sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==",
+ "dev": true
+ },
+ "walker": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
+ "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
+ "dev": true,
+ "requires": {
+ "makeerror": "1.0.12"
+ }
+ },
+ "webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "dev": true
+ },
+ "whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "dev": true,
+ "requires": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "which-boxed-primitive": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
+ "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
+ "dev": true,
+ "requires": {
+ "is-bigint": "^1.0.1",
+ "is-boolean-object": "^1.1.0",
+ "is-number-object": "^1.0.4",
+ "is-string": "^1.0.5",
+ "is-symbol": "^1.0.3"
+ }
+ },
+ "which-typed-array": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
+ "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==",
+ "dev": true,
+ "requires": {
+ "available-typed-arrays": "^1.0.5",
+ "call-bind": "^1.0.2",
+ "for-each": "^0.3.3",
+ "gopd": "^1.0.1",
+ "has-tostringtag": "^1.0.0",
+ "is-typed-array": "^1.1.10"
+ }
+ },
+ "word-wrap": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
+ "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
+ "dev": true
+ },
+ "wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "wrap-ansi-cjs": {
+ "version": "npm:wrap-ansi@7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ }
+ },
+ "wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "dev": true
+ },
+ "write-file-atomic": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
+ "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
+ "dev": true,
+ "requires": {
+ "imurmurhash": "^0.1.4",
+ "is-typedarray": "^1.0.0",
+ "signal-exit": "^3.0.2",
+ "typedarray-to-buffer": "^3.1.5"
+ }
+ },
+ "xdg-basedir": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz",
+ "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==",
+ "dev": true
+ },
+ "y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true
+ },
+ "yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dev": true,
+ "requires": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ }
+ },
+ "yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "dev": true
+ },
+ "yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true
+ }
}
}
diff --git a/package.json b/package.json
index 5d03eaa..2b6e3ff 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,8 @@
"lint:ls": "ls-lint",
"lint:md": "markdownlint --config ./.markdownlint.jsonc --fix ./ ",
"lint:js": "eslint --max-warnings=0 --ext=.js --format=codeframe --format=table",
- "test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests"
+ "test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests",
+ "study": "lenses2"
},
"author": "HackYourFutureBelgium",
"license": "MIT",