asv-hlps 1.4.27 → 1.4.28
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 +1 -1
- package/lib/cjs/utils.js +1 -0
- package/lib/esm/utils.d.ts +1 -1
- package/lib/esm/utils.js +1 -0
- package/package.json +1 -1
package/lib/cjs/utils.d.ts
CHANGED
|
@@ -110,4 +110,4 @@ export declare const toggleProp: (tob: any, propToToggle: string) => any;
|
|
|
110
110
|
export declare const winMaxHeight: (step?: 0.2 | 0.3 | 0.4 | 0.5 | 0.6 | 0.7 | 0.8 | 0.9) => number;
|
|
111
111
|
export declare const arraySome: (arr1: any[], arr2: any[]) => boolean;
|
|
112
112
|
export declare const checkObjInArray: (objs: any[], checkProp: string | number, prop?: string) => boolean;
|
|
113
|
-
export declare const pathUrlName: (location:
|
|
113
|
+
export declare const pathUrlName: (location: any) => any;
|
package/lib/cjs/utils.js
CHANGED
|
@@ -796,6 +796,7 @@ const checkObjInArray = (objs, checkProp, prop = "id") => {
|
|
|
796
796
|
});
|
|
797
797
|
};
|
|
798
798
|
exports.checkObjInArray = checkObjInArray;
|
|
799
|
+
// export const pathUrlName = (location: Location) => {
|
|
799
800
|
const pathUrlName = (location) => {
|
|
800
801
|
return location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
|
|
801
802
|
};
|
package/lib/esm/utils.d.ts
CHANGED
|
@@ -110,4 +110,4 @@ export declare const toggleProp: (tob: any, propToToggle: string) => any;
|
|
|
110
110
|
export declare const winMaxHeight: (step?: 0.2 | 0.3 | 0.4 | 0.5 | 0.6 | 0.7 | 0.8 | 0.9) => number;
|
|
111
111
|
export declare const arraySome: (arr1: any[], arr2: any[]) => boolean;
|
|
112
112
|
export declare const checkObjInArray: (objs: any[], checkProp: string | number, prop?: string) => boolean;
|
|
113
|
-
export declare const pathUrlName: (location:
|
|
113
|
+
export declare const pathUrlName: (location: any) => any;
|
package/lib/esm/utils.js
CHANGED
|
@@ -705,6 +705,7 @@ export const checkObjInArray = (objs, checkProp, prop = "id") => {
|
|
|
705
705
|
return x[prop] === checkProp;
|
|
706
706
|
});
|
|
707
707
|
};
|
|
708
|
+
// export const pathUrlName = (location: Location) => {
|
|
708
709
|
export const pathUrlName = (location) => {
|
|
709
710
|
return location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
|
|
710
711
|
};
|