@zajno/common 1.3.2 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/CI.yml +8 -0
- package/coverage/clover.xml +195 -141
- package/coverage/coverage-final.json +40 -39
- package/coverage/lcov-report/index.html +39 -24
- package/coverage/lcov-report/src/__tests__/helpers/index.html +1 -1
- package/coverage/lcov-report/src/__tests__/helpers/main.ts.html +1 -1
- package/coverage/lcov-report/src/async/arrays.ts.html +1 -1
- package/coverage/lcov-report/src/async/index.html +1 -1
- package/coverage/lcov-report/src/dates/calc.ts.html +1 -1
- package/coverage/lcov-report/src/dates/convert.ts.html +1 -1
- package/coverage/lcov-report/src/dates/datex.ts.html +1 -1
- package/coverage/lcov-report/src/dates/format.ts.html +1 -1
- package/coverage/lcov-report/src/dates/index.html +1 -1
- package/coverage/lcov-report/src/dates/index.ts.html +1 -1
- package/coverage/lcov-report/src/dates/parse.ts.html +1 -1
- package/coverage/lcov-report/src/dates/period.ts.html +1 -1
- package/coverage/lcov-report/src/dates/shift.ts.html +1 -1
- package/coverage/lcov-report/src/dates/types.ts.html +1 -1
- package/coverage/lcov-report/src/dates/yearDate.ts.html +1 -1
- package/coverage/lcov-report/src/enumHelper.ts.html +1 -1
- package/coverage/lcov-report/src/event.ts.html +1 -1
- package/coverage/lcov-report/src/fields/index.html +111 -0
- package/coverage/lcov-report/src/{viewModels/SelectViewModel.ts.html → fields/update.ts.html} +119 -182
- package/coverage/lcov-report/src/index.html +1 -1
- package/coverage/lcov-report/src/lazy.light.ts.html +3 -3
- package/coverage/lcov-report/src/logger/batch.ts.html +1 -1
- package/coverage/lcov-report/src/logger/console.ts.html +1 -1
- package/coverage/lcov-report/src/logger/index.html +1 -1
- package/coverage/lcov-report/src/logger/index.ts.html +1 -1
- package/coverage/lcov-report/src/logger/named.ts.html +1 -1
- package/coverage/lcov-report/src/logger/proxy.ts.html +1 -1
- package/coverage/lcov-report/src/math/arrays.ts.html +32 -8
- package/coverage/lcov-report/src/math/calc.ts.html +1 -1
- package/coverage/lcov-report/src/math/distribution.ts.html +1 -1
- package/coverage/lcov-report/src/math/index.html +11 -11
- package/coverage/lcov-report/src/math/index.ts.html +1 -1
- package/coverage/lcov-report/src/transitionObserver.ts.html +1 -1
- package/coverage/lcov-report/src/types.ts.html +4 -4
- package/coverage/lcov-report/src/validation/ValidationErrors.ts.html +1 -1
- package/coverage/lcov-report/src/validation/creditCard.ts.html +1 -1
- package/coverage/lcov-report/src/validation/helpers.ts.html +1 -1
- package/coverage/lcov-report/src/validation/index.html +1 -1
- package/coverage/lcov-report/src/validation/index.ts.html +1 -1
- package/coverage/lcov-report/src/validation/types.ts.html +1 -1
- package/coverage/lcov-report/src/validation/validators.ts.html +1 -1
- package/coverage/lcov-report/src/validation/wrappers.ts.html +1 -1
- package/coverage/lcov-report/src/viewModels/FlagModel.ts.html +6 -6
- package/coverage/lcov-report/src/viewModels/MultiSelectModel.ts.html +104 -95
- package/coverage/lcov-report/src/viewModels/NumberModel.ts.html +1 -1
- package/coverage/lcov-report/src/viewModels/SelectModel.ts.html +1 -1
- package/coverage/lcov-report/src/viewModels/Validatable.ts.html +45 -21
- package/coverage/lcov-report/src/viewModels/index.html +30 -30
- package/coverage/lcov-report/src/viewModels/wrappers.ts.html +1 -1
- package/coverage/lcov-report/{enumHelper.ts.html → update.ts.html} +118 -193
- package/coverage/lcov.info +347 -207
- package/lib/fields/update.d.ts +17 -6
- package/lib/fields/update.d.ts.map +1 -1
- package/lib/fields/update.js +29 -13
- package/lib/fields/update.js.map +1 -1
- package/lib/ident.d.ts +6 -0
- package/lib/ident.d.ts.map +1 -0
- package/lib/ident.js +3 -0
- package/lib/ident.js.map +1 -0
- package/lib/math/arrays.d.ts +2 -1
- package/lib/math/arrays.d.ts.map +1 -1
- package/lib/math/arrays.js +9 -1
- package/lib/math/arrays.js.map +1 -1
- package/lib/viewModels/MultiSelectModel.d.ts +2 -0
- package/lib/viewModels/MultiSelectModel.d.ts.map +1 -1
- package/lib/viewModels/MultiSelectModel.js +3 -1
- package/lib/viewModels/MultiSelectModel.js.map +1 -1
- package/lib/viewModels/PromptModal.d.ts.map +1 -1
- package/lib/viewModels/PromptModal.js +1 -1
- package/lib/viewModels/PromptModal.js.map +1 -1
- package/lib/viewModels/Validatable.d.ts +2 -1
- package/lib/viewModels/Validatable.d.ts.map +1 -1
- package/lib/viewModels/Validatable.js +7 -0
- package/lib/viewModels/Validatable.js.map +1 -1
- package/package.json +1 -1
- package/src/fields/__tests__/fields.update.test.ts +73 -0
- package/src/fields/update.ts +54 -20
- package/src/ident.ts +8 -0
- package/src/math/arrays.ts +9 -1
- package/src/viewModels/MultiSelectModel.ts +4 -1
- package/src/viewModels/PromptModal.ts +1 -1
- package/src/viewModels/Validatable.ts +8 -0
- package/src/viewModels/__tests__/multiSelect.test.ts +127 -12
- package/coverage/lcov-report/NumberModel.ts.html +0 -188
- package/coverage/lcov-report/arrays.ts.html +0 -602
- package/coverage/lcov-report/calc.ts.html +0 -278
- package/coverage/lcov-report/src/viewModels/LabeledFlagModel.ts.html +0 -137
- package/coverage/lcov-report/src/viewModels/labeled.ts.html +0 -128
- package/coverage/lcov-report/transitionObserver.ts.html +0 -536
package/coverage/clover.xml
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1641234183024" clover="3.2.0">
|
|
3
|
+
<project timestamp="1641234183024" name="All files">
|
|
4
|
+
<metrics statements="1174" coveredstatements="1013" conditionals="745" coveredconditionals="608" methods="348" coveredmethods="256" elements="2267" coveredelements="1877" complexity="0" loc="1174" ncloc="1174" packages="9" files="40" classes="40"/>
|
|
5
5
|
<package name="src">
|
|
6
6
|
<metrics statements="175" coveredstatements="154" conditionals="99" coveredconditionals="82" methods="66" coveredmethods="54"/>
|
|
7
|
-
<file name="enumHelper.ts" path="/Users/idudinov/projects/common-utils/src/enumHelper.ts">
|
|
7
|
+
<file name="enumHelper.ts" path="/Users/idudinov/projects/zajno-common-utils/src/enumHelper.ts">
|
|
8
8
|
<metrics statements="50" coveredstatements="50" conditionals="41" coveredconditionals="36" methods="25" coveredmethods="25"/>
|
|
9
9
|
<line num="1" count="5" type="stmt"/>
|
|
10
10
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
<line num="117" count="14" type="stmt"/>
|
|
58
58
|
<line num="121" count="1" type="stmt"/>
|
|
59
59
|
</file>
|
|
60
|
-
<file name="event.ts" path="/Users/idudinov/projects/common-utils/src/event.ts">
|
|
60
|
+
<file name="event.ts" path="/Users/idudinov/projects/zajno-common-utils/src/event.ts">
|
|
61
61
|
<metrics statements="23" coveredstatements="13" conditionals="6" coveredconditionals="4" methods="11" coveredmethods="4"/>
|
|
62
62
|
<line num="1" count="1" type="stmt"/>
|
|
63
63
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -83,17 +83,17 @@
|
|
|
83
83
|
<line num="60" count="0" type="stmt"/>
|
|
84
84
|
<line num="64" count="0" type="stmt"/>
|
|
85
85
|
</file>
|
|
86
|
-
<file name="lazy.light.ts" path="/Users/idudinov/projects/common-utils/src/lazy.light.ts">
|
|
86
|
+
<file name="lazy.light.ts" path="/Users/idudinov/projects/zajno-common-utils/src/lazy.light.ts">
|
|
87
87
|
<metrics statements="7" coveredstatements="6" conditionals="2" coveredconditionals="2" methods="4" coveredmethods="3"/>
|
|
88
88
|
<line num="9" count="2" type="stmt"/>
|
|
89
|
-
<line num="10" count="
|
|
89
|
+
<line num="10" count="11" type="stmt"/>
|
|
90
90
|
<line num="14" count="19" type="cond" truecount="2" falsecount="0"/>
|
|
91
91
|
<line num="15" count="1" type="stmt"/>
|
|
92
92
|
<line num="17" count="19" type="stmt"/>
|
|
93
|
-
<line num="19" count="
|
|
93
|
+
<line num="19" count="27" type="stmt"/>
|
|
94
94
|
<line num="21" count="0" type="stmt"/>
|
|
95
95
|
</file>
|
|
96
|
-
<file name="transitionObserver.ts" path="/Users/idudinov/projects/common-utils/src/transitionObserver.ts">
|
|
96
|
+
<file name="transitionObserver.ts" path="/Users/idudinov/projects/zajno-common-utils/src/transitionObserver.ts">
|
|
97
97
|
<metrics statements="86" coveredstatements="77" conditionals="42" coveredconditionals="33" methods="22" coveredmethods="18"/>
|
|
98
98
|
<line num="1" count="1" type="stmt"/>
|
|
99
99
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -182,14 +182,14 @@
|
|
|
182
182
|
<line num="172" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
183
183
|
<line num="173" count="3" type="stmt"/>
|
|
184
184
|
</file>
|
|
185
|
-
<file name="types.ts" path="/Users/idudinov/projects/common-utils/src/types.ts">
|
|
185
|
+
<file name="types.ts" path="/Users/idudinov/projects/zajno-common-utils/src/types.ts">
|
|
186
186
|
<metrics statements="9" coveredstatements="8" conditionals="8" coveredconditionals="7" methods="4" coveredmethods="4"/>
|
|
187
187
|
<line num="9" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
188
188
|
<line num="10" count="8" type="stmt"/>
|
|
189
|
-
<line num="11" count="
|
|
189
|
+
<line num="11" count="80" type="cond" truecount="2" falsecount="0"/>
|
|
190
190
|
<line num="12" count="6" type="stmt"/>
|
|
191
|
-
<line num="14" count="
|
|
192
|
-
<line num="15" count="
|
|
191
|
+
<line num="14" count="74" type="cond" truecount="1" falsecount="1"/>
|
|
192
|
+
<line num="15" count="74" type="stmt"/>
|
|
193
193
|
<line num="17" count="0" type="stmt"/>
|
|
194
194
|
<line num="24" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
195
195
|
<line num="25" count="8" type="stmt"/>
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
</package>
|
|
198
198
|
<package name="src.__tests__.helpers">
|
|
199
199
|
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
200
|
-
<file name="main.ts" path="/Users/idudinov/projects/common-utils/src/__tests__/helpers/main.ts">
|
|
200
|
+
<file name="main.ts" path="/Users/idudinov/projects/zajno-common-utils/src/__tests__/helpers/main.ts">
|
|
201
201
|
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
202
202
|
<line num="1" count="2" type="stmt"/>
|
|
203
203
|
<line num="2" count="2" type="stmt"/>
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
</package>
|
|
210
210
|
<package name="src.async">
|
|
211
211
|
<metrics statements="21" coveredstatements="4" conditionals="4" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
212
|
-
<file name="arrays.ts" path="/Users/idudinov/projects/common-utils/src/async/arrays.ts">
|
|
212
|
+
<file name="arrays.ts" path="/Users/idudinov/projects/zajno-common-utils/src/async/arrays.ts">
|
|
213
213
|
<metrics statements="21" coveredstatements="4" conditionals="4" coveredconditionals="0" methods="4" coveredmethods="0"/>
|
|
214
214
|
<line num="3" count="3" type="stmt"/>
|
|
215
215
|
<line num="4" count="0" type="stmt"/>
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
</package>
|
|
237
237
|
<package name="src.dates">
|
|
238
238
|
<metrics statements="332" coveredstatements="332" conditionals="289" coveredconditionals="284" methods="59" coveredmethods="59"/>
|
|
239
|
-
<file name="calc.ts" path="/Users/idudinov/projects/common-utils/src/dates/calc.ts">
|
|
239
|
+
<file name="calc.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/calc.ts">
|
|
240
240
|
<metrics statements="40" coveredstatements="40" conditionals="30" coveredconditionals="29" methods="7" coveredmethods="7"/>
|
|
241
241
|
<line num="1" count="1" type="stmt"/>
|
|
242
242
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
<line num="69" count="1" type="stmt"/>
|
|
280
280
|
<line num="71" count="1" type="stmt"/>
|
|
281
281
|
</file>
|
|
282
|
-
<file name="convert.ts" path="/Users/idudinov/projects/common-utils/src/dates/convert.ts">
|
|
282
|
+
<file name="convert.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/convert.ts">
|
|
283
283
|
<metrics statements="109" coveredstatements="109" conditionals="59" coveredconditionals="59" methods="18" coveredmethods="18"/>
|
|
284
284
|
<line num="1" count="1" type="stmt"/>
|
|
285
285
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
<line num="197" count="12" type="stmt"/>
|
|
392
392
|
<line num="201" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
393
393
|
</file>
|
|
394
|
-
<file name="datex.ts" path="/Users/idudinov/projects/common-utils/src/dates/datex.ts">
|
|
394
|
+
<file name="datex.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/datex.ts">
|
|
395
395
|
<metrics statements="25" coveredstatements="25" conditionals="50" coveredconditionals="50" methods="4" coveredmethods="4"/>
|
|
396
396
|
<line num="3" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
397
397
|
<line num="4" count="1" type="stmt"/>
|
|
@@ -419,7 +419,7 @@
|
|
|
419
419
|
<line num="37" count="7" type="stmt"/>
|
|
420
420
|
<line num="40" count="329" type="cond" truecount="2" falsecount="0"/>
|
|
421
421
|
</file>
|
|
422
|
-
<file name="format.ts" path="/Users/idudinov/projects/common-utils/src/dates/format.ts">
|
|
422
|
+
<file name="format.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/format.ts">
|
|
423
423
|
<metrics statements="51" coveredstatements="51" conditionals="54" coveredconditionals="53" methods="10" coveredmethods="10"/>
|
|
424
424
|
<line num="1" count="1" type="stmt"/>
|
|
425
425
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
<line num="96" count="8" type="stmt"/>
|
|
474
474
|
<line num="101" count="7" type="stmt"/>
|
|
475
475
|
</file>
|
|
476
|
-
<file name="index.ts" path="/Users/idudinov/projects/common-utils/src/dates/index.ts">
|
|
476
|
+
<file name="index.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/index.ts">
|
|
477
477
|
<metrics statements="9" coveredstatements="9" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
478
478
|
<line num="1" count="1" type="stmt"/>
|
|
479
479
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
<line num="8" count="1" type="stmt"/>
|
|
486
486
|
<line num="9" count="1" type="stmt"/>
|
|
487
487
|
</file>
|
|
488
|
-
<file name="parse.ts" path="/Users/idudinov/projects/common-utils/src/dates/parse.ts">
|
|
488
|
+
<file name="parse.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/parse.ts">
|
|
489
489
|
<metrics statements="7" coveredstatements="7" conditionals="5" coveredconditionals="5" methods="2" coveredmethods="2"/>
|
|
490
490
|
<line num="2" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
491
491
|
<line num="4" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
@@ -495,7 +495,7 @@
|
|
|
495
495
|
<line num="8" count="1" type="stmt"/>
|
|
496
496
|
<line num="10" count="1" type="stmt"/>
|
|
497
497
|
</file>
|
|
498
|
-
<file name="period.ts" path="/Users/idudinov/projects/common-utils/src/dates/period.ts">
|
|
498
|
+
<file name="period.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/period.ts">
|
|
499
499
|
<metrics statements="11" coveredstatements="11" conditionals="7" coveredconditionals="6" methods="5" coveredmethods="5"/>
|
|
500
500
|
<line num="1" count="1" type="stmt"/>
|
|
501
501
|
<line num="5" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
<line num="19" count="1" type="stmt"/>
|
|
510
510
|
<line num="20" count="16" type="cond" truecount="2" falsecount="0"/>
|
|
511
511
|
</file>
|
|
512
|
-
<file name="shift.ts" path="/Users/idudinov/projects/common-utils/src/dates/shift.ts">
|
|
512
|
+
<file name="shift.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/shift.ts">
|
|
513
513
|
<metrics statements="54" coveredstatements="54" conditionals="22" coveredconditionals="22" methods="5" coveredmethods="5"/>
|
|
514
514
|
<line num="1" count="1" type="stmt"/>
|
|
515
515
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -566,7 +566,7 @@
|
|
|
566
566
|
<line num="88" count="32" type="stmt"/>
|
|
567
567
|
<line num="89" count="32" type="stmt"/>
|
|
568
568
|
</file>
|
|
569
|
-
<file name="types.ts" path="/Users/idudinov/projects/common-utils/src/dates/types.ts">
|
|
569
|
+
<file name="types.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/types.ts">
|
|
570
570
|
<metrics statements="10" coveredstatements="10" conditionals="9" coveredconditionals="9" methods="2" coveredmethods="2"/>
|
|
571
571
|
<line num="5" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
572
572
|
<line num="6" count="1" type="stmt"/>
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
<line num="24" count="17" type="stmt"/>
|
|
580
580
|
<line num="27" count="3" type="stmt"/>
|
|
581
581
|
</file>
|
|
582
|
-
<file name="yearDate.ts" path="/Users/idudinov/projects/common-utils/src/dates/yearDate.ts">
|
|
582
|
+
<file name="yearDate.ts" path="/Users/idudinov/projects/zajno-common-utils/src/dates/yearDate.ts">
|
|
583
583
|
<metrics statements="16" coveredstatements="16" conditionals="53" coveredconditionals="51" methods="6" coveredmethods="6"/>
|
|
584
584
|
<line num="1" count="1" type="stmt"/>
|
|
585
585
|
<line num="6" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
@@ -599,9 +599,52 @@
|
|
|
599
599
|
<line num="34" count="7" type="cond" truecount="18" falsecount="0"/>
|
|
600
600
|
</file>
|
|
601
601
|
</package>
|
|
602
|
+
<package name="src.fields">
|
|
603
|
+
<metrics statements="37" coveredstatements="29" conditionals="50" coveredconditionals="40" methods="11" coveredmethods="5"/>
|
|
604
|
+
<file name="update.ts" path="/Users/idudinov/projects/zajno-common-utils/src/fields/update.ts">
|
|
605
|
+
<metrics statements="37" coveredstatements="29" conditionals="50" coveredconditionals="40" methods="11" coveredmethods="5"/>
|
|
606
|
+
<line num="11" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
607
|
+
<line num="12" count="0" type="stmt"/>
|
|
608
|
+
<line num="15" count="1" type="stmt"/>
|
|
609
|
+
<line num="24" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
610
|
+
<line num="26" count="0" type="stmt"/>
|
|
611
|
+
<line num="28" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
612
|
+
<line num="29" count="0" type="stmt"/>
|
|
613
|
+
<line num="30" count="0" type="stmt"/>
|
|
614
|
+
<line num="31" count="0" type="stmt"/>
|
|
615
|
+
<line num="34" count="0" type="stmt"/>
|
|
616
|
+
<line num="38" count="38" type="stmt"/>
|
|
617
|
+
<line num="39" count="1" type="stmt"/>
|
|
618
|
+
<line num="49" count="1" type="stmt"/>
|
|
619
|
+
<line num="54" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
620
|
+
<line num="55" count="1" type="stmt"/>
|
|
621
|
+
<line num="58" count="5" type="stmt"/>
|
|
622
|
+
<line num="59" count="5" type="stmt"/>
|
|
623
|
+
<line num="63" count="5" type="cond" truecount="6" falsecount="0"/>
|
|
624
|
+
<line num="64" count="5" type="cond" truecount="6" falsecount="0"/>
|
|
625
|
+
<line num="67" count="5" type="cond" truecount="5" falsecount="1"/>
|
|
626
|
+
<line num="68" count="5" type="stmt"/>
|
|
627
|
+
<line num="69" count="31" type="cond" truecount="2" falsecount="0"/>
|
|
628
|
+
<line num="70" count="10" type="stmt"/>
|
|
629
|
+
<line num="71" count="10" type="stmt"/>
|
|
630
|
+
<line num="72" count="10" type="stmt"/>
|
|
631
|
+
<line num="78" count="5" type="stmt"/>
|
|
632
|
+
<line num="79" count="15" type="stmt"/>
|
|
633
|
+
<line num="80" count="12" type="stmt"/>
|
|
634
|
+
<line num="81" count="12" type="cond" truecount="2" falsecount="0"/>
|
|
635
|
+
<line num="82" count="7" type="stmt"/>
|
|
636
|
+
<line num="83" count="7" type="stmt"/>
|
|
637
|
+
<line num="84" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
638
|
+
<line num="85" count="1" type="stmt"/>
|
|
639
|
+
<line num="89" count="5" type="cond" truecount="4" falsecount="0"/>
|
|
640
|
+
<line num="90" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
641
|
+
<line num="91" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
642
|
+
<line num="94" count="5" type="stmt"/>
|
|
643
|
+
</file>
|
|
644
|
+
</package>
|
|
602
645
|
<package name="src.logger">
|
|
603
646
|
<metrics statements="97" coveredstatements="69" conditionals="46" coveredconditionals="27" methods="35" coveredmethods="24"/>
|
|
604
|
-
<file name="batch.ts" path="/Users/idudinov/projects/common-utils/src/logger/batch.ts">
|
|
647
|
+
<file name="batch.ts" path="/Users/idudinov/projects/zajno-common-utils/src/logger/batch.ts">
|
|
605
648
|
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="7" coveredmethods="7"/>
|
|
606
649
|
<line num="3" count="2" type="stmt"/>
|
|
607
650
|
<line num="4" count="3" type="stmt"/>
|
|
@@ -609,7 +652,7 @@
|
|
|
609
652
|
<line num="6" count="2" type="stmt"/>
|
|
610
653
|
<line num="7" count="2" type="stmt"/>
|
|
611
654
|
</file>
|
|
612
|
-
<file name="console.ts" path="/Users/idudinov/projects/common-utils/src/logger/console.ts">
|
|
655
|
+
<file name="console.ts" path="/Users/idudinov/projects/zajno-common-utils/src/logger/console.ts">
|
|
613
656
|
<metrics statements="24" coveredstatements="4" conditionals="10" coveredconditionals="0" methods="7" coveredmethods="0"/>
|
|
614
657
|
<line num="2" count="2" type="stmt"/>
|
|
615
658
|
<line num="4" count="2" type="stmt"/>
|
|
@@ -636,7 +679,7 @@
|
|
|
636
679
|
<line num="47" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
637
680
|
<line num="48" count="0" type="stmt"/>
|
|
638
681
|
</file>
|
|
639
|
-
<file name="index.ts" path="/Users/idudinov/projects/common-utils/src/logger/index.ts">
|
|
682
|
+
<file name="index.ts" path="/Users/idudinov/projects/zajno-common-utils/src/logger/index.ts">
|
|
640
683
|
<metrics statements="36" coveredstatements="30" conditionals="18" coveredconditionals="13" methods="10" coveredmethods="7"/>
|
|
641
684
|
<line num="1" count="2" type="stmt"/>
|
|
642
685
|
<line num="3" count="2" type="stmt"/>
|
|
@@ -675,7 +718,7 @@
|
|
|
675
718
|
<line num="64" count="25" type="stmt"/>
|
|
676
719
|
<line num="68" count="61" type="stmt"/>
|
|
677
720
|
</file>
|
|
678
|
-
<file name="named.ts" path="/Users/idudinov/projects/common-utils/src/logger/named.ts">
|
|
721
|
+
<file name="named.ts" path="/Users/idudinov/projects/zajno-common-utils/src/logger/named.ts">
|
|
679
722
|
<metrics statements="21" coveredstatements="20" conditionals="12" coveredconditionals="11" methods="8" coveredmethods="7"/>
|
|
680
723
|
<line num="3" count="2" type="stmt"/>
|
|
681
724
|
<line num="5" count="2" type="stmt"/>
|
|
@@ -699,7 +742,7 @@
|
|
|
699
742
|
<line num="44" count="93" type="stmt"/>
|
|
700
743
|
<line num="45" count="93" type="stmt"/>
|
|
701
744
|
</file>
|
|
702
|
-
<file name="proxy.ts" path="/Users/idudinov/projects/common-utils/src/logger/proxy.ts">
|
|
745
|
+
<file name="proxy.ts" path="/Users/idudinov/projects/zajno-common-utils/src/logger/proxy.ts">
|
|
703
746
|
<metrics statements="11" coveredstatements="10" conditionals="6" coveredconditionals="3" methods="3" coveredmethods="3"/>
|
|
704
747
|
<line num="2" count="2" type="stmt"/>
|
|
705
748
|
<line num="4" count="2" type="stmt"/>
|
|
@@ -715,9 +758,9 @@
|
|
|
715
758
|
</file>
|
|
716
759
|
</package>
|
|
717
760
|
<package name="src.math">
|
|
718
|
-
<metrics statements="
|
|
719
|
-
<file name="arrays.ts" path="/Users/idudinov/projects/common-utils/src/math/arrays.ts">
|
|
720
|
-
<metrics statements="
|
|
761
|
+
<metrics statements="194" coveredstatements="194" conditionals="140" coveredconditionals="134" methods="39" coveredmethods="39"/>
|
|
762
|
+
<file name="arrays.ts" path="/Users/idudinov/projects/zajno-common-utils/src/math/arrays.ts">
|
|
763
|
+
<metrics statements="138" coveredstatements="138" conditionals="80" coveredconditionals="77" methods="29" coveredmethods="29"/>
|
|
721
764
|
<line num="1" count="6" type="stmt"/>
|
|
722
765
|
<line num="2" count="6" type="stmt"/>
|
|
723
766
|
<line num="4" count="6" type="stmt"/>
|
|
@@ -851,8 +894,13 @@
|
|
|
851
894
|
<line num="248" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
852
895
|
<line num="249" count="1" type="stmt"/>
|
|
853
896
|
<line num="252" count="2" type="stmt"/>
|
|
897
|
+
<line num="255" count="6" type="cond" truecount="0" falsecount="1"/>
|
|
898
|
+
<line num="256" count="1" type="stmt"/>
|
|
899
|
+
<line num="257" count="1" type="stmt"/>
|
|
900
|
+
<line num="258" count="5" type="stmt"/>
|
|
901
|
+
<line num="260" count="1" type="stmt"/>
|
|
854
902
|
</file>
|
|
855
|
-
<file name="calc.ts" path="/Users/idudinov/projects/common-utils/src/math/calc.ts">
|
|
903
|
+
<file name="calc.ts" path="/Users/idudinov/projects/zajno-common-utils/src/math/calc.ts">
|
|
856
904
|
<metrics statements="33" coveredstatements="33" conditionals="40" coveredconditionals="37" methods="7" coveredmethods="7"/>
|
|
857
905
|
<line num="2" count="7" type="cond" truecount="3" falsecount="0"/>
|
|
858
906
|
<line num="3" count="13" type="cond" truecount="4" falsecount="0"/>
|
|
@@ -888,7 +936,7 @@
|
|
|
888
936
|
<line num="63" count="10" type="stmt"/>
|
|
889
937
|
<line num="64" count="10" type="cond" truecount="2" falsecount="0"/>
|
|
890
938
|
</file>
|
|
891
|
-
<file name="distribution.ts" path="/Users/idudinov/projects/common-utils/src/math/distribution.ts">
|
|
939
|
+
<file name="distribution.ts" path="/Users/idudinov/projects/zajno-common-utils/src/math/distribution.ts">
|
|
892
940
|
<metrics statements="8" coveredstatements="8" conditionals="10" coveredconditionals="10" methods="1" coveredmethods="1"/>
|
|
893
941
|
<line num="8" count="6" type="stmt"/>
|
|
894
942
|
<line num="9" count="4" type="cond" truecount="4" falsecount="0"/>
|
|
@@ -899,7 +947,7 @@
|
|
|
899
947
|
<line num="16" count="3" type="stmt"/>
|
|
900
948
|
<line num="19" count="4" type="stmt"/>
|
|
901
949
|
</file>
|
|
902
|
-
<file name="index.ts" path="/Users/idudinov/projects/common-utils/src/math/index.ts">
|
|
950
|
+
<file name="index.ts" path="/Users/idudinov/projects/zajno-common-utils/src/math/index.ts">
|
|
903
951
|
<metrics statements="15" coveredstatements="15" conditionals="10" coveredconditionals="10" methods="2" coveredmethods="2"/>
|
|
904
952
|
<line num="2" count="5" type="stmt"/>
|
|
905
953
|
<line num="3" count="5" type="stmt"/>
|
|
@@ -920,7 +968,7 @@
|
|
|
920
968
|
</package>
|
|
921
969
|
<package name="src.validation">
|
|
922
970
|
<metrics statements="87" coveredstatements="45" conditionals="58" coveredconditionals="6" methods="29" coveredmethods="4"/>
|
|
923
|
-
<file name="ValidationErrors.ts" path="/Users/idudinov/projects/common-utils/src/validation/ValidationErrors.ts">
|
|
971
|
+
<file name="ValidationErrors.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/ValidationErrors.ts">
|
|
924
972
|
<metrics statements="21" coveredstatements="21" conditionals="4" coveredconditionals="3" methods="2" coveredmethods="2"/>
|
|
925
973
|
<line num="1" count="4" type="stmt"/>
|
|
926
974
|
<line num="3" count="4" type="cond" truecount="2" falsecount="0"/>
|
|
@@ -944,7 +992,7 @@
|
|
|
944
992
|
<line num="24" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
945
993
|
<line num="25" count="4" type="stmt"/>
|
|
946
994
|
</file>
|
|
947
|
-
<file name="creditCard.ts" path="/Users/idudinov/projects/common-utils/src/validation/creditCard.ts">
|
|
995
|
+
<file name="creditCard.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/creditCard.ts">
|
|
948
996
|
<metrics statements="7" coveredstatements="3" conditionals="8" coveredconditionals="0" methods="2" coveredmethods="0"/>
|
|
949
997
|
<line num="1" count="4" type="stmt"/>
|
|
950
998
|
<line num="3" count="4" type="stmt"/>
|
|
@@ -954,7 +1002,7 @@
|
|
|
954
1002
|
<line num="18" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
955
1003
|
<line num="21" count="4" type="stmt"/>
|
|
956
1004
|
</file>
|
|
957
|
-
<file name="helpers.ts" path="/Users/idudinov/projects/common-utils/src/validation/helpers.ts">
|
|
1005
|
+
<file name="helpers.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/helpers.ts">
|
|
958
1006
|
<metrics statements="19" coveredstatements="5" conditionals="9" coveredconditionals="0" methods="5" coveredmethods="0"/>
|
|
959
1007
|
<line num="1" count="4" type="stmt"/>
|
|
960
1008
|
<line num="2" count="4" type="stmt"/>
|
|
@@ -976,7 +1024,7 @@
|
|
|
976
1024
|
<line num="42" count="0" type="stmt"/>
|
|
977
1025
|
<line num="46" count="0" type="stmt"/>
|
|
978
1026
|
</file>
|
|
979
|
-
<file name="index.ts" path="/Users/idudinov/projects/common-utils/src/validation/index.ts">
|
|
1027
|
+
<file name="index.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/index.ts">
|
|
980
1028
|
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
981
1029
|
<line num="1" count="4" type="stmt"/>
|
|
982
1030
|
<line num="2" count="4" type="stmt"/>
|
|
@@ -984,14 +1032,14 @@
|
|
|
984
1032
|
<line num="4" count="4" type="stmt"/>
|
|
985
1033
|
<line num="5" count="4" type="stmt"/>
|
|
986
1034
|
</file>
|
|
987
|
-
<file name="types.ts" path="/Users/idudinov/projects/common-utils/src/validation/types.ts">
|
|
1035
|
+
<file name="types.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/types.ts">
|
|
988
1036
|
<metrics statements="4" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="0"/>
|
|
989
1037
|
<line num="8" count="4" type="stmt"/>
|
|
990
1038
|
<line num="9" count="0" type="stmt"/>
|
|
991
1039
|
<line num="12" count="0" type="stmt"/>
|
|
992
1040
|
<line num="13" count="0" type="stmt"/>
|
|
993
1041
|
</file>
|
|
994
|
-
<file name="validators.ts" path="/Users/idudinov/projects/common-utils/src/validation/validators.ts">
|
|
1042
|
+
<file name="validators.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/validators.ts">
|
|
995
1043
|
<metrics statements="21" coveredstatements="6" conditionals="33" coveredconditionals="3" methods="13" coveredmethods="2"/>
|
|
996
1044
|
<line num="1" count="4" type="stmt"/>
|
|
997
1045
|
<line num="2" count="4" type="stmt"/>
|
|
@@ -1015,7 +1063,7 @@
|
|
|
1015
1063
|
<line num="53" count="802" type="cond" truecount="2" falsecount="0"/>
|
|
1016
1064
|
<line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1017
1065
|
</file>
|
|
1018
|
-
<file name="wrappers.ts" path="/Users/idudinov/projects/common-utils/src/validation/wrappers.ts">
|
|
1066
|
+
<file name="wrappers.ts" path="/Users/idudinov/projects/zajno-common-utils/src/validation/wrappers.ts">
|
|
1019
1067
|
<metrics statements="10" coveredstatements="4" conditionals="4" coveredconditionals="0" methods="6" coveredmethods="0"/>
|
|
1020
1068
|
<line num="1" count="4" type="stmt"/>
|
|
1021
1069
|
<line num="3" count="4" type="stmt"/>
|
|
@@ -1030,24 +1078,24 @@
|
|
|
1030
1078
|
</file>
|
|
1031
1079
|
</package>
|
|
1032
1080
|
<package name="src.viewModels">
|
|
1033
|
-
<metrics statements="
|
|
1034
|
-
<file name="FlagModel.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/FlagModel.ts">
|
|
1081
|
+
<metrics statements="225" coveredstatements="180" conditionals="59" coveredconditionals="35" methods="103" coveredmethods="69"/>
|
|
1082
|
+
<file name="FlagModel.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/FlagModel.ts">
|
|
1035
1083
|
<metrics statements="12" coveredstatements="9" conditionals="1" coveredconditionals="1" methods="6" coveredmethods="3"/>
|
|
1036
1084
|
<line num="1" count="3" type="stmt"/>
|
|
1037
1085
|
<line num="15" count="3" type="stmt"/>
|
|
1038
|
-
<line num="18" count="
|
|
1039
|
-
<line num="21" count="
|
|
1040
|
-
<line num="22" count="
|
|
1086
|
+
<line num="18" count="17" type="stmt"/>
|
|
1087
|
+
<line num="21" count="17" type="stmt"/>
|
|
1088
|
+
<line num="22" count="17" type="stmt"/>
|
|
1041
1089
|
<line num="26" count="39" type="stmt"/>
|
|
1042
1090
|
<line num="30" count="38" type="stmt"/>
|
|
1043
1091
|
<line num="33" count="0" type="stmt"/>
|
|
1044
|
-
<line num="36" count="
|
|
1092
|
+
<line num="36" count="17" type="stmt"/>
|
|
1045
1093
|
<line num="37" count="0" type="stmt"/>
|
|
1046
|
-
<line num="41" count="
|
|
1094
|
+
<line num="41" count="17" type="stmt"/>
|
|
1047
1095
|
<line num="42" count="0" type="stmt"/>
|
|
1048
1096
|
</file>
|
|
1049
|
-
<file name="MultiSelectModel.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/MultiSelectModel.ts">
|
|
1050
|
-
<metrics statements="
|
|
1097
|
+
<file name="MultiSelectModel.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/MultiSelectModel.ts">
|
|
1098
|
+
<metrics statements="83" coveredstatements="64" conditionals="16" coveredconditionals="7" methods="42" coveredmethods="28"/>
|
|
1051
1099
|
<line num="1" count="1" type="stmt"/>
|
|
1052
1100
|
<line num="2" count="1" type="stmt"/>
|
|
1053
1101
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -1055,82 +1103,84 @@
|
|
|
1055
1103
|
<line num="6" count="1" type="stmt"/>
|
|
1056
1104
|
<line num="8" count="1" type="stmt"/>
|
|
1057
1105
|
<line num="10" count="1" type="stmt"/>
|
|
1058
|
-
<line num="13" count="
|
|
1059
|
-
<line num="15" count="
|
|
1060
|
-
<line num="16" count="
|
|
1061
|
-
<line num="18" count="
|
|
1062
|
-
<line num="19" count="
|
|
1063
|
-
<line num="22" count="
|
|
1064
|
-
<line num="23" count="
|
|
1065
|
-
<line num="26" count="
|
|
1066
|
-
<line num="27" count="
|
|
1067
|
-
<line num="28" count="
|
|
1068
|
-
<line num="29" count="
|
|
1069
|
-
<line num="33" count="
|
|
1070
|
-
<line num="35" count="
|
|
1106
|
+
<line num="13" count="6" type="stmt"/>
|
|
1107
|
+
<line num="15" count="6" type="stmt"/>
|
|
1108
|
+
<line num="16" count="6" type="stmt"/>
|
|
1109
|
+
<line num="18" count="6" type="stmt"/>
|
|
1110
|
+
<line num="19" count="6" type="stmt"/>
|
|
1111
|
+
<line num="22" count="6" type="stmt"/>
|
|
1112
|
+
<line num="23" count="6" type="stmt"/>
|
|
1113
|
+
<line num="26" count="6" type="stmt"/>
|
|
1114
|
+
<line num="27" count="6" type="stmt"/>
|
|
1115
|
+
<line num="28" count="6" type="stmt"/>
|
|
1116
|
+
<line num="29" count="6" type="stmt"/>
|
|
1117
|
+
<line num="33" count="25" type="stmt"/>
|
|
1118
|
+
<line num="35" count="7" type="stmt"/>
|
|
1071
1119
|
<line num="37" count="0" type="stmt"/>
|
|
1072
1120
|
<line num="40" count="1" type="stmt"/>
|
|
1073
|
-
<line num="41" count="
|
|
1121
|
+
<line num="41" count="49" type="stmt"/>
|
|
1074
1122
|
<line num="45" count="1" type="stmt"/>
|
|
1075
|
-
<line num="46" count="
|
|
1123
|
+
<line num="46" count="9" type="stmt"/>
|
|
1076
1124
|
<line num="50" count="1" type="stmt"/>
|
|
1077
|
-
<line num="51" count="
|
|
1078
|
-
<line num="52" count="
|
|
1125
|
+
<line num="51" count="21" type="stmt"/>
|
|
1126
|
+
<line num="52" count="21" type="stmt"/>
|
|
1079
1127
|
<line num="55" count="0" type="stmt"/>
|
|
1080
1128
|
<line num="56" count="0" type="stmt"/>
|
|
1081
|
-
<line num="58" count="
|
|
1082
|
-
<line num="59" count="
|
|
1083
|
-
<line num="61" count="
|
|
1084
|
-
<line num="62" count="
|
|
1129
|
+
<line num="58" count="11" type="stmt"/>
|
|
1130
|
+
<line num="59" count="18" type="stmt"/>
|
|
1131
|
+
<line num="61" count="4" type="stmt"/>
|
|
1132
|
+
<line num="62" count="4" type="stmt"/>
|
|
1085
1133
|
<line num="63" count="0" type="stmt"/>
|
|
1086
1134
|
<line num="66" count="1" type="cond" truecount="0" falsecount="4"/>
|
|
1087
1135
|
<line num="68" count="0" type="stmt"/>
|
|
1088
|
-
<line num="70" count="
|
|
1089
|
-
<line num="71" count="
|
|
1090
|
-
<line num="72" count="
|
|
1091
|
-
<line num="73" count="
|
|
1092
|
-
<line num="77" count="
|
|
1093
|
-
<line num="78" count="
|
|
1094
|
-
<line num="81" count="
|
|
1095
|
-
<line num="82" count="
|
|
1096
|
-
<line num="85" count="
|
|
1097
|
-
<line num="86" count="
|
|
1098
|
-
<line num="87" count="
|
|
1099
|
-
<line num="88" count="
|
|
1100
|
-
<line num="92" count="
|
|
1101
|
-
<line num="93" count="
|
|
1102
|
-
<line num="96" count="
|
|
1136
|
+
<line num="70" count="6" type="stmt"/>
|
|
1137
|
+
<line num="71" count="4" type="stmt"/>
|
|
1138
|
+
<line num="72" count="4" type="cond" truecount="1" falsecount="1"/>
|
|
1139
|
+
<line num="73" count="4" type="stmt"/>
|
|
1140
|
+
<line num="77" count="6" type="stmt"/>
|
|
1141
|
+
<line num="78" count="6" type="stmt"/>
|
|
1142
|
+
<line num="81" count="6" type="stmt"/>
|
|
1143
|
+
<line num="82" count="1" type="stmt"/>
|
|
1144
|
+
<line num="85" count="6" type="stmt"/>
|
|
1145
|
+
<line num="86" count="2" type="stmt"/>
|
|
1146
|
+
<line num="87" count="2" type="cond" truecount="1" falsecount="1"/>
|
|
1147
|
+
<line num="88" count="2" type="stmt"/>
|
|
1148
|
+
<line num="92" count="6" type="stmt"/>
|
|
1149
|
+
<line num="93" count="6" type="stmt"/>
|
|
1150
|
+
<line num="96" count="6" type="stmt"/>
|
|
1103
1151
|
<line num="97" count="0" type="stmt"/>
|
|
1104
|
-
<line num="101" count="
|
|
1105
|
-
<line num="102" count="
|
|
1152
|
+
<line num="101" count="6" type="stmt"/>
|
|
1153
|
+
<line num="102" count="8" type="cond" truecount="1" falsecount="1"/>
|
|
1106
1154
|
<line num="103" count="0" type="stmt"/>
|
|
1107
|
-
<line num="106" count="
|
|
1108
|
-
<line num="107" count="
|
|
1109
|
-
<line num="109" count="
|
|
1110
|
-
<line num="112" count="
|
|
1111
|
-
<line num="113" count="
|
|
1155
|
+
<line num="106" count="8" type="cond" truecount="2" falsecount="0"/>
|
|
1156
|
+
<line num="107" count="5" type="stmt"/>
|
|
1157
|
+
<line num="109" count="3" type="stmt"/>
|
|
1158
|
+
<line num="112" count="8" type="cond" truecount="1" falsecount="1"/>
|
|
1159
|
+
<line num="113" count="8" type="stmt"/>
|
|
1112
1160
|
<line num="116" count="0" type="stmt"/>
|
|
1113
1161
|
<line num="117" count="0" type="stmt"/>
|
|
1114
1162
|
<line num="118" count="0" type="stmt"/>
|
|
1115
1163
|
<line num="120" count="0" type="stmt"/>
|
|
1116
|
-
<line num="124" count="
|
|
1117
|
-
<line num="125" count="
|
|
1118
|
-
<line num="
|
|
1119
|
-
<line num="
|
|
1120
|
-
<line num="
|
|
1121
|
-
<line num="133" count="
|
|
1122
|
-
<line num="134" count="
|
|
1123
|
-
<line num="
|
|
1124
|
-
<line num="
|
|
1125
|
-
<line num="
|
|
1126
|
-
<line num="
|
|
1127
|
-
<line num="
|
|
1164
|
+
<line num="124" count="6" type="stmt"/>
|
|
1165
|
+
<line num="125" count="6" type="stmt"/>
|
|
1166
|
+
<line num="127" count="6" type="stmt"/>
|
|
1167
|
+
<line num="128" count="1" type="stmt"/>
|
|
1168
|
+
<line num="129" count="1" type="stmt"/>
|
|
1169
|
+
<line num="133" count="7" type="stmt"/>
|
|
1170
|
+
<line num="134" count="7" type="stmt"/>
|
|
1171
|
+
<line num="136" count="7" type="cond" truecount="1" falsecount="1"/>
|
|
1172
|
+
<line num="137" count="0" type="stmt"/>
|
|
1173
|
+
<line num="142" count="0" type="stmt"/>
|
|
1174
|
+
<line num="144" count="0" type="stmt"/>
|
|
1175
|
+
<line num="146" count="0" type="stmt"/>
|
|
1128
1176
|
<line num="150" count="0" type="stmt"/>
|
|
1129
|
-
<line num="
|
|
1130
|
-
<line num="
|
|
1131
|
-
<line num="
|
|
1177
|
+
<line num="151" count="0" type="stmt"/>
|
|
1178
|
+
<line num="153" count="0" type="stmt"/>
|
|
1179
|
+
<line num="155" count="0" type="stmt"/>
|
|
1180
|
+
<line num="159" count="1" type="stmt"/>
|
|
1181
|
+
<line num="162" count="3" type="stmt"/>
|
|
1132
1182
|
</file>
|
|
1133
|
-
<file name="NumberModel.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/NumberModel.ts">
|
|
1183
|
+
<file name="NumberModel.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/NumberModel.ts">
|
|
1134
1184
|
<metrics statements="15" coveredstatements="13" conditionals="3" coveredconditionals="1" methods="7" coveredmethods="3"/>
|
|
1135
1185
|
<line num="1" count="1" type="stmt"/>
|
|
1136
1186
|
<line num="9" count="1" type="stmt"/>
|
|
@@ -1148,7 +1198,7 @@
|
|
|
1148
1198
|
<line num="36" count="3" type="cond" truecount="0" falsecount="1"/>
|
|
1149
1199
|
<line num="39" count="1" type="stmt"/>
|
|
1150
1200
|
</file>
|
|
1151
|
-
<file name="SelectModel.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/SelectModel.ts">
|
|
1201
|
+
<file name="SelectModel.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/SelectModel.ts">
|
|
1152
1202
|
<metrics statements="56" coveredstatements="53" conditionals="16" coveredconditionals="15" methods="25" coveredmethods="22"/>
|
|
1153
1203
|
<line num="1" count="1" type="stmt"/>
|
|
1154
1204
|
<line num="2" count="1" type="stmt"/>
|
|
@@ -1207,46 +1257,50 @@
|
|
|
1207
1257
|
<line num="124" count="1" type="stmt"/>
|
|
1208
1258
|
<line num="126" count="3" type="stmt"/>
|
|
1209
1259
|
</file>
|
|
1210
|
-
<file name="Validatable.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/Validatable.ts">
|
|
1211
|
-
<metrics statements="
|
|
1260
|
+
<file name="Validatable.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/Validatable.ts">
|
|
1261
|
+
<metrics statements="40" coveredstatements="25" conditionals="23" coveredconditionals="11" methods="13" coveredmethods="6"/>
|
|
1212
1262
|
<line num="1" count="2" type="stmt"/>
|
|
1213
1263
|
<line num="2" count="2" type="stmt"/>
|
|
1214
1264
|
<line num="3" count="2" type="stmt"/>
|
|
1215
1265
|
<line num="13" count="2" type="stmt"/>
|
|
1216
1266
|
<line num="14" count="2" type="stmt"/>
|
|
1217
|
-
<line num="16" count="
|
|
1218
|
-
<line num="17" count="
|
|
1219
|
-
<line num="20" count="
|
|
1220
|
-
<line num="22" count="
|
|
1221
|
-
<line num="25" count="
|
|
1222
|
-
<line num="26" count="
|
|
1267
|
+
<line num="16" count="11" type="stmt"/>
|
|
1268
|
+
<line num="17" count="11" type="stmt"/>
|
|
1269
|
+
<line num="20" count="11" type="stmt"/>
|
|
1270
|
+
<line num="22" count="11" type="stmt"/>
|
|
1271
|
+
<line num="25" count="11" type="stmt"/>
|
|
1272
|
+
<line num="26" count="11" type="stmt"/>
|
|
1223
1273
|
<line num="31" count="0" type="stmt"/>
|
|
1224
1274
|
<line num="33" count="1" type="stmt"/>
|
|
1225
|
-
<line num="36" count="
|
|
1226
|
-
<line num="37" count="
|
|
1227
|
-
<line num="38" count="
|
|
1228
|
-
<line num="42" count="
|
|
1275
|
+
<line num="36" count="11" type="cond" truecount="5" falsecount="1"/>
|
|
1276
|
+
<line num="37" count="11" type="cond" truecount="3" falsecount="1"/>
|
|
1277
|
+
<line num="38" count="11" type="stmt"/>
|
|
1278
|
+
<line num="42" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1229
1279
|
<line num="43" count="0" type="stmt"/>
|
|
1230
|
-
<line num="
|
|
1231
|
-
<line num="
|
|
1232
|
-
<line num="
|
|
1233
|
-
<line num="
|
|
1234
|
-
<line num="
|
|
1280
|
+
<line num="44" count="0" type="stmt"/>
|
|
1281
|
+
<line num="46" count="0" type="stmt"/>
|
|
1282
|
+
<line num="50" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
1283
|
+
<line num="51" count="0" type="stmt"/>
|
|
1284
|
+
<line num="54" count="1" type="stmt"/>
|
|
1285
|
+
<line num="55" count="1" type="stmt"/>
|
|
1235
1286
|
<line num="56" count="1" type="stmt"/>
|
|
1236
|
-
<line num="
|
|
1237
|
-
<line num="
|
|
1238
|
-
<line num="
|
|
1239
|
-
<line num="65" count="0" type="stmt"/>
|
|
1287
|
+
<line num="60" count="0" type="stmt"/>
|
|
1288
|
+
<line num="63" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
1289
|
+
<line num="64" count="1" type="stmt"/>
|
|
1240
1290
|
<line num="66" count="0" type="stmt"/>
|
|
1241
|
-
<line num="
|
|
1242
|
-
<line num="
|
|
1243
|
-
<line num="
|
|
1244
|
-
<line num="
|
|
1245
|
-
<line num="
|
|
1246
|
-
<line num="
|
|
1247
|
-
<line num="
|
|
1291
|
+
<line num="67" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1292
|
+
<line num="69" count="1" type="stmt"/>
|
|
1293
|
+
<line num="73" count="0" type="stmt"/>
|
|
1294
|
+
<line num="74" count="0" type="stmt"/>
|
|
1295
|
+
<line num="78" count="2" type="stmt"/>
|
|
1296
|
+
<line num="79" count="2" type="stmt"/>
|
|
1297
|
+
<line num="80" count="2" type="stmt"/>
|
|
1298
|
+
<line num="84" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
1299
|
+
<line num="85" count="0" type="stmt"/>
|
|
1300
|
+
<line num="88" count="0" type="stmt"/>
|
|
1301
|
+
<line num="89" count="0" type="stmt"/>
|
|
1248
1302
|
</file>
|
|
1249
|
-
<file name="wrappers.ts" path="/Users/idudinov/projects/common-utils/src/viewModels/wrappers.ts">
|
|
1303
|
+
<file name="wrappers.ts" path="/Users/idudinov/projects/zajno-common-utils/src/viewModels/wrappers.ts">
|
|
1250
1304
|
<metrics statements="19" coveredstatements="16" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="7"/>
|
|
1251
1305
|
<line num="1" count="3" type="stmt"/>
|
|
1252
1306
|
<line num="4" count="3" type="stmt"/>
|