asv-hlps 1.3.95 → 1.3.97
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/lib/cjs/utils.d.ts +2 -1
- package/lib/cjs/utils.js +11 -3
- package/lib/esm/utils.d.ts +2 -1
- package/lib/esm/utils.js +8 -1
- package/package.json +5 -5
package/lib/cjs/utils.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export declare const fillStartWithZero: (num: string | number, targetLength: num
|
|
|
92
92
|
export declare const fillEndWithZero: (num: string | number, targetLength: number) => string;
|
|
93
93
|
export declare const sumAmount: (tobs: any[], property: string) => number;
|
|
94
94
|
export declare const reduceSum: (tobs: any[], property: string) => number;
|
|
95
|
+
export declare const reduceTimes: (tobs: any[], propA: string, propB: string) => number;
|
|
95
96
|
export declare const formatAmountToString: (amount: number, opt?: {
|
|
96
97
|
math?: "ceil" | "floor";
|
|
97
98
|
currency?: "cfa";
|
|
@@ -104,6 +105,6 @@ export declare const countryIsoToFlag: (code: string) => string;
|
|
|
104
105
|
export declare const removeParamKeyName: (params: any, name?: string) => any;
|
|
105
106
|
export declare const roundLastNDigits: (num: number, digits?: number) => number | false;
|
|
106
107
|
export declare const toggleProp: (tob: any, propToToggle: string) => any;
|
|
107
|
-
export declare const
|
|
108
|
+
export declare const winMaxHeight: (step?: 0.2 | 0.3 | 0.4 | 0.5 | 0.6 | 0.7 | 0.8 | 0.9) => number;
|
|
108
109
|
export declare const arraySome: (arr1: any[], arr2: any[]) => boolean;
|
|
109
110
|
export declare const checkObjInArray: (objs: any[], checkProp: string | number, prop?: string) => boolean;
|
package/lib/cjs/utils.js
CHANGED
|
@@ -4,7 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.unCheckedAll = exports.inputChecked = exports.arrayMultiChecked = exports.getPeriodDateColor = exports.getColorAccordingToDate = exports.genRandomColour = exports.formatNgbDate = exports.getNbOfDaysBetweenTwoDates = exports.displayDateRangeFr = exports.reformatDates = exports.firstDayOfDate = exports.dateToString = exports.dateDiff = exports.dateFormatter = exports.replaceSpacesWith = exports.replaceAllIn = exports.toPlural = exports.sesStorageGet = exports.sesStorageSet = exports.genSequenceRef = exports.refGenerator = exports.removeBackSlashOccurences = exports.stringifyFormatter = exports.removeString = exports.diffArraysByProp = exports.diffArraysByFunc = exports.deepClone = exports.findFirstSequenceMissing = exports.fillNumWithZero = exports.findSequencesMissing = exports.sequencesToNumbers = exports.notInSequence = exports.currencyFormatterCfa = exports.formatToStringCfa = exports.currencyFormatter = exports.formatToString = exports.checkAuth = exports.wakeUp = exports.sleep = exports.limitTo = exports.titleCase = exports.toObjectDate = exports.duplicateObjects = exports.removeDuplicateObjects = exports.getRandomColor = exports.calPercent = exports.percentOf = exports.genDateMinutesStep = exports.formatDateFirstDayFr = exports.isEmpty = void 0;
|
|
7
|
-
exports.checkObjInArray = exports.arraySome = exports.
|
|
7
|
+
exports.checkObjInArray = exports.arraySome = exports.winMaxHeight = exports.toggleProp = exports.roundLastNDigits = exports.removeParamKeyName = exports.countryIsoToFlag = exports.monthStringName = exports.returnBool = exports.formatAmountToString = exports.reduceTimes = exports.reduceSum = exports.sumAmount = exports.fillEndWithZero = exports.fillStartWithZero = exports.absFromSequence = exports.returnDates = exports.displayFrDatePeriode = exports.getArrayOfRandomColor = exports.randomHslColor = exports.randomHexColor = exports.randomRgbColor = exports.randomInteger = exports.insertAtInArray = exports.isBirthday = exports.padEndWithZero = exports.padStartWithZero = exports.formatMonthYearToLocaleString = exports.calculPercent = exports.validEmail = exports.convertToCfa = exports.packAndUnit = void 0;
|
|
8
8
|
const dayjs_1 = __importDefault(require("dayjs"));
|
|
9
9
|
const relativeTime_1 = __importDefault(require("dayjs/plugin/relativeTime"));
|
|
10
10
|
const lodash_1 = __importDefault(require("lodash"));
|
|
@@ -683,6 +683,14 @@ const reduceSum = (tobs, property) => {
|
|
|
683
683
|
}, 0);
|
|
684
684
|
};
|
|
685
685
|
exports.reduceSum = reduceSum;
|
|
686
|
+
const reduceTimes = (tobs, propA, propB) => {
|
|
687
|
+
return tobs.reduce((prev, curr) => {
|
|
688
|
+
if (curr && curr[propA] !== null && curr[propB] !== null) {
|
|
689
|
+
return +prev + +curr[propA] * +curr[propB];
|
|
690
|
+
}
|
|
691
|
+
}, 0);
|
|
692
|
+
};
|
|
693
|
+
exports.reduceTimes = reduceTimes;
|
|
686
694
|
const formatAmountToString = (amount, opt) => {
|
|
687
695
|
let getAmount = amount;
|
|
688
696
|
switch (opt === null || opt === void 0 ? void 0 : opt.math) {
|
|
@@ -752,10 +760,10 @@ const toggleProp = (tob, propToToggle) => {
|
|
|
752
760
|
return nTob;
|
|
753
761
|
};
|
|
754
762
|
exports.toggleProp = toggleProp;
|
|
755
|
-
const
|
|
763
|
+
const winMaxHeight = (step) => {
|
|
756
764
|
return step ? window.innerHeight * step : window.innerHeight * 0.5;
|
|
757
765
|
};
|
|
758
|
-
exports.
|
|
766
|
+
exports.winMaxHeight = winMaxHeight;
|
|
759
767
|
const arraySome = (arr1, arr2) => {
|
|
760
768
|
return arr1.some((x) => arr2.includes(x));
|
|
761
769
|
};
|
package/lib/esm/utils.d.ts
CHANGED
|
@@ -92,6 +92,7 @@ export declare const fillStartWithZero: (num: string | number, targetLength: num
|
|
|
92
92
|
export declare const fillEndWithZero: (num: string | number, targetLength: number) => string;
|
|
93
93
|
export declare const sumAmount: (tobs: any[], property: string) => number;
|
|
94
94
|
export declare const reduceSum: (tobs: any[], property: string) => number;
|
|
95
|
+
export declare const reduceTimes: (tobs: any[], propA: string, propB: string) => number;
|
|
95
96
|
export declare const formatAmountToString: (amount: number, opt?: {
|
|
96
97
|
math?: "ceil" | "floor";
|
|
97
98
|
currency?: "cfa";
|
|
@@ -104,6 +105,6 @@ export declare const countryIsoToFlag: (code: string) => string;
|
|
|
104
105
|
export declare const removeParamKeyName: (params: any, name?: string) => any;
|
|
105
106
|
export declare const roundLastNDigits: (num: number, digits?: number) => number | false;
|
|
106
107
|
export declare const toggleProp: (tob: any, propToToggle: string) => any;
|
|
107
|
-
export declare const
|
|
108
|
+
export declare const winMaxHeight: (step?: 0.2 | 0.3 | 0.4 | 0.5 | 0.6 | 0.7 | 0.8 | 0.9) => number;
|
|
108
109
|
export declare const arraySome: (arr1: any[], arr2: any[]) => boolean;
|
|
109
110
|
export declare const checkObjInArray: (objs: any[], checkProp: string | number, prop?: string) => boolean;
|
package/lib/esm/utils.js
CHANGED
|
@@ -605,6 +605,13 @@ export const reduceSum = (tobs, property) => {
|
|
|
605
605
|
}
|
|
606
606
|
}, 0);
|
|
607
607
|
};
|
|
608
|
+
export const reduceTimes = (tobs, propA, propB) => {
|
|
609
|
+
return tobs.reduce((prev, curr) => {
|
|
610
|
+
if (curr && curr[propA] !== null && curr[propB] !== null) {
|
|
611
|
+
return +prev + +curr[propA] * +curr[propB];
|
|
612
|
+
}
|
|
613
|
+
}, 0);
|
|
614
|
+
};
|
|
608
615
|
export const formatAmountToString = (amount, opt) => {
|
|
609
616
|
let getAmount = amount;
|
|
610
617
|
switch (opt === null || opt === void 0 ? void 0 : opt.math) {
|
|
@@ -667,7 +674,7 @@ export const toggleProp = (tob, propToToggle) => {
|
|
|
667
674
|
nTob[propToToggle] = !nTob[propToToggle];
|
|
668
675
|
return nTob;
|
|
669
676
|
};
|
|
670
|
-
export const
|
|
677
|
+
export const winMaxHeight = (step) => {
|
|
671
678
|
return step ? window.innerHeight * step : window.innerHeight * 0.5;
|
|
672
679
|
};
|
|
673
680
|
export const arraySome = (arr1, arr2) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "asv-hlps",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.97",
|
|
4
4
|
"description": "helpers",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@types/lodash": "^4.17.7",
|
|
22
22
|
"@types/pdfmake": "^0.2.9",
|
|
23
23
|
"@types/randomatic": "^3.1.5",
|
|
24
|
-
"@types/react": "^18.3.
|
|
24
|
+
"@types/react": "^18.3.8"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"axios": "^1.7.7",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"class-validator": "^0.14.1",
|
|
30
30
|
"classnames": "^2.5.1",
|
|
31
31
|
"dayjs": "^1.11.13",
|
|
32
|
-
"express": "^4.
|
|
32
|
+
"express": "^4.21.0",
|
|
33
33
|
"jwt-decode": "^4.0.0",
|
|
34
34
|
"lodash": "^4.17.21",
|
|
35
|
-
"pdfmake": "^0.2.
|
|
35
|
+
"pdfmake": "^0.2.13",
|
|
36
36
|
"randomatic": "^3.1.1",
|
|
37
37
|
"typeorm": "^0.3.20",
|
|
38
|
-
"typescript": "^5.
|
|
38
|
+
"typescript": "^5.6.2",
|
|
39
39
|
"yup": "^1.4.0"
|
|
40
40
|
}
|
|
41
41
|
}
|