-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
π unknownutil v4 #87
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- `isReadonly` - `isReadonlyOf` - `isUnwrapReadonlyOf`
- `is.OptionalOf` -> `as.Optional` - `is.UnwrapOptionalOf` -> `as.Unoptional`
Additionally, the following breaking changes are included in this commit - The default optional argument of `UniformTupleOf` is changed from `isAny` to `undefined` - The `isBigInt` function is renamed to `isBigint` - Some utility type functions are removed
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #87 +/- ##
==========================================
- Coverage 99.41% 97.99% -1.43%
==========================================
Files 5 50 +45
Lines 682 797 +115
Branches 87 88 +1
==========================================
+ Hits 678 781 +103
- Misses 4 16 +12 β View full report in Codecov by Sentry. |
This was referenced Aug 1, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
β TODO
isReadonlyOf
to supportisTupleOf
andisUniformTupleOf
π₯ Breaking changes
isBigInt
is renamed toisBigint
isOptionalOf
is renamed toasOptional
and moved intoas
moduleisUnwrapOptionalOf
is renamed toasUnoptional
and moved intoas
moduleisOptional
is renamed tohasOptional
and moved intoas
moduleisRecordLike
is removed (UseisRecord
instead)isRecordLikeOf
is removed (UseisRecordOf
instead)isReadonlyTupleOf
is removed (UseisTupleOf
withisReadonlyOf
instead)isReadonlyUniformTupleOf
is removed (UseisUniformTupleOf
withisReadonlyOf
instead)options
ofisObjectOf
is removed (UseisObjectOf
withisStrictOf
instead)isOneOf
is removed (UseisUnionOf
instead)isAllOf
is removed (UseisIntersectionOf
instead)isReadonly
is removedisUnwrapReadonlyOf
is removedgetMetadata
is removedgetPredicateFactoryMetadata
is removedsetPredicateFactoryMetadata
is removedGetMetadata
is removedWithMetadata
is removedPredicateFactoryMetadata
is removedπ Enhancements
asReadonly
,asUnreadonly
, andhasReadonly
is
oras
modules