@thi.ng/paths
Advanced tools
Comparing version 4.0.6 to 4.0.7
@@ -6,2 +6,13 @@ # Change Log | ||
## [4.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.0.6...@thi.ng/paths@4.0.7) (2020-05-16) | ||
### Bug Fixes | ||
* **paths:** arg type for 2-arity getIn() ([56d5cd0](https://github.com/thi-ng/umbrella/commit/56d5cd02213cf43daaedefb723010351c7e535f7)) | ||
## [4.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/paths@4.0.5...@thi.ng/paths@4.0.6) (2020-05-14) | ||
@@ -8,0 +19,0 @@ |
@@ -1,2 +0,2 @@ | ||
import type { DeepPath, Path, Path0, Path1, Path3, Path4, Path5, Path6, Path7, Path8, OptPathVal } from "@thi.ng/api"; | ||
import type { DeepPath, OptPathVal, Path, Path0, Path1, Path2, Path3, Path4, Path5, Path6, Path7, Path8 } from "@thi.ng/api"; | ||
/** | ||
@@ -39,3 +39,3 @@ * Unchecked version of {@link getIn}. Returns `undefined` if path is | ||
export declare function getIn<T, A>(state: T, path: Path1<T, A>): OptPathVal<T, [A]>; | ||
export declare function getIn<T, A, B>(state: T, path: Path1<A, B>): OptPathVal<T, [A, B]>; | ||
export declare function getIn<T, A, B>(state: T, path: Path2<T, A, B>): OptPathVal<T, [A, B]>; | ||
export declare function getIn<T, A, B, C>(state: T, path: Path3<T, A, B, C>): OptPathVal<T, [A, B, C]>; | ||
@@ -42,0 +42,0 @@ export declare function getIn<T, A, B, C, D>(state: T, path: Path4<T, A, B, C, D>): OptPathVal<T, [A, B, C, D]>; |
{ | ||
"name": "@thi.ng/paths", | ||
"version": "4.0.6", | ||
"version": "4.0.7", | ||
"description": "Immutable, optimized and optionally typed path-based object property / array accessors with structural sharing", | ||
@@ -78,3 +78,3 @@ "module": "./index.js", | ||
"sideEffects": false, | ||
"gitHead": "97c301379d830c1982c364cfbec8766ff14f73f5" | ||
"gitHead": "f587109ff84408e05e59c0f65f06a2e856dbbe0f" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
106055