@thi.ng/paths
Advanced tools
Comparing version 5.1.3 to 5.1.4
# Change Log | ||
- **Last updated**: 2021-12-13T10:26:00Z | ||
- **Last updated**: 2022-03-11T12:13:49Z | ||
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub) | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "@thi.ng/paths", | ||
"version": "5.1.3", | ||
"version": "5.1.4", | ||
"description": "Immutable, optimized and optionally typed path-based object property / array accessors with structural sharing", | ||
@@ -37,13 +37,13 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.3.3", | ||
"@thi.ng/checks": "^3.1.3", | ||
"@thi.ng/errors": "^2.1.3" | ||
"@thi.ng/api": "^8.3.4", | ||
"@thi.ng/checks": "^3.1.4", | ||
"@thi.ng/errors": "^2.1.4" | ||
}, | ||
"devDependencies": { | ||
"@microsoft/api-extractor": "^7.19.2", | ||
"@thi.ng/testament": "^0.2.3", | ||
"@microsoft/api-extractor": "^7.19.4", | ||
"@thi.ng/testament": "^0.2.4", | ||
"rimraf": "^3.0.2", | ||
"tools": "^0.0.1", | ||
"typedoc": "^0.22.10", | ||
"typescript": "^4.5.3" | ||
"typedoc": "^0.22.13", | ||
"typescript": "^4.6.2" | ||
}, | ||
@@ -127,3 +127,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "2db9dd34c0c2c60cbfde3dad0bca352b20292f5c\n" | ||
"gitHead": "0fc692a3225c068aacafdc4cb6140cf603c67ad8\n" | ||
} |
@@ -41,5 +41,5 @@ import type { NumOrString, Path } from "@thi.ng/api"; | ||
* | ||
* @param path | ||
* @param path - | ||
*/ | ||
export declare const disallowProtoPath: (path: Path) => Path; | ||
//# sourceMappingURL=path.d.ts.map |
@@ -68,4 +68,4 @@ import { isArray } from "@thi.ng/checks/is-array"; | ||
* | ||
* @param path | ||
* @param path - | ||
*/ | ||
export const disallowProtoPath = (path) => (assert(!isProtoPath(path), `unsafe path: '${path}'`), path); |
@@ -386,2 +386,2 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
© 2016 - 2021 Karsten Schmidt // Apache Software License 2.0 | ||
© 2016 - 2022 Karsten Schmidt // Apache Software License 2.0 |
@@ -104,5 +104,5 @@ import type { DeepPath, Fn2, Path, Path0, Path1, Path2, Path3, Path4, Path5, Path6, Path7, Path8, PathVal } from "@thi.ng/api"; | ||
* | ||
* @param x | ||
* @param x - | ||
*/ | ||
export declare const copy: (x: any) => any; | ||
//# sourceMappingURL=setter.d.ts.map |
@@ -109,3 +109,3 @@ import { isArray } from "@thi.ng/checks/is-array"; | ||
* | ||
* @param x | ||
* @param x - | ||
*/ | ||
@@ -112,0 +112,0 @@ export const copy = (x) => isArray(x) || isTypedArray(x) ? x.slice() : { ...x }; |
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
82487
Updated@thi.ng/api@^8.3.4
Updated@thi.ng/checks@^3.1.4
Updated@thi.ng/errors@^2.1.4