extra-utils 4.0.0 → 4.0.1

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/README.md CHANGED
@@ -276,6 +276,6 @@ function pipe<A, B>(
276
276
  ): B
277
277
  function pipe<T, U>(
278
278
  value: T
279
- , ...operators: Array<(value: unknown) => unknown>
279
+ , ...operators: Array<(value: any) => unknown>
280
280
  ): U
281
281
  ```
package/lib/pipe.d.ts CHANGED
@@ -40,4 +40,4 @@ export declare function pipe<A, B, C>(value: A, ...operators: [
40
40
  export declare function pipe<A, B>(value: A, ...operators: [
41
41
  (value: A) => B
42
42
  ]): B;
43
- export declare function pipe<T, U>(value: T, ...operators: Array<(value: unknown) => unknown>): U;
43
+ export declare function pipe<T, U>(value: T, ...operators: Array<(value: any) => unknown>): U;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extra-utils",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Utilities for JavaScript and Typescript",
5
5
  "files": [
6
6
  "lib"