@bbn/bbn 1.0.40 → 1.0.42

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/dist/bundle.d.ts CHANGED
@@ -153,7 +153,7 @@ declare module "fn/abort" {
153
153
  export { abort };
154
154
  }
155
155
  declare module "fn/filter" {
156
- const filter: (arr: any[], prop: object | string, val?: any, operator?: string) => any[];
156
+ const filter: (arr: any[], prop: string | object | ((a: any, i: string | number | symbol) => boolean), val?: any, operator?: string) => any[];
157
157
  export { filter };
158
158
  }
159
159
  declare module "fn/abortURL" {
@@ -1,2 +1,2 @@
1
- declare const filter: (arr: any[], prop: object | string, val?: any, operator?: string) => any[];
1
+ declare const filter: (arr: any[], prop: string | object | ((a: any, i: string | number | symbol) => boolean), val?: any, operator?: string) => any[];
2
2
  export { filter };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",