ts-util-is
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [2.0.2](https://github.com/justinlettau/ts-util-is/compare/v2.0.1...v2.0.2) (2021-12-04) | ||
### Bug Fixes | ||
* support readonly arrays ([8ea1e86](https://github.com/justinlettau/ts-util-is/commit/8ea1e86fd0fc696b6347252da0dacf2e27cd20b4)), closes [#43](https://github.com/justinlettau/ts-util-is/issues/43) | ||
### [2.0.1](https://github.com/justinlettau/ts-util-is/compare/v2.0.0...v2.0.1) (2021-10-28) | ||
@@ -7,0 +14,0 @@ |
@@ -6,3 +6,3 @@ /** | ||
*/ | ||
export declare function isArray<T = unknown>(value: any): value is T[]; | ||
export declare function isArray<T = any>(value: any): value is T[] | readonly T[]; | ||
/** | ||
@@ -9,0 +9,0 @@ * Determines if a reference is a valid base64 string. |
{ | ||
"name": "ts-util-is", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "TypeScript typeof utility helper with no dependencies.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
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
17380