Comparing version 0.4.0 to 0.5.0
export { isNotNull } from './isNotNull'; | ||
export { isNotUndefined } from './isNotUndefined'; | ||
export { isNotNullish } from './isNotNullish'; | ||
export { type NonNullish, isNotNullish } from './isNotNullish'; | ||
export { isNotEmptyString } from './isNotEmptyString'; | ||
export { isNotEmptyArray } from './isNotEmptyArray'; | ||
export type { NonEmptyArray } from './isNotEmptyArray'; | ||
export { type NonEmptyArray, isNotEmptyArray } from './isNotEmptyArray'; |
@@ -1,1 +0,2 @@ | ||
export declare function isNotNullish<T>(value: T): value is Exclude<T, null | undefined>; | ||
export declare type NonNullish<T> = Exclude<T, null | undefined>; | ||
export declare function isNotNullish<T>(value: T): value is NonNullish<T>; |
# aint | ||
## 0.5.0 | ||
### Minor Changes | ||
- 8d3de1f: Export NonNullish type | ||
- a335dbc: Export `NonEmptyArray` type from a single statement | ||
## 0.4.0 | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "aint", | ||
"version": "0.4.0", | ||
"version": "0.5.0", | ||
"description": "A collection of common runtime predicates that TypeScript actually understands.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
10707