Skip to content

Commit 7a7e8cf

Browse files
docs(README.md): update
1 parent b1f9562 commit 7a7e8cf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ isBooleanType(BOOLEAN_INSTANCE); // false
445445

446446
### isDefined
447447

448-
Use `isDefined()` or `is.defined()` to check if an **unknown** `value` is NOT an `undefined` type and is NOT equal to `undefined`.
448+
Use `isDefined()` or `is.defined()` to check if an **unknown** `value` is **not** an `undefined` type and is **not** equal to `undefined`.
449449

450450
```typescript
451451
const isDefined: IsDefined = (value: unknown, callback: ResultCallback = resultCallback): boolean =>
@@ -744,6 +744,8 @@ isNumberType(NUMBER_NEW_INSTANCE); // false
744744

745745
![update][update]
746746

747+
* Removed `key` parameter. Use [`isObjectKeyIn`](#isobjectkin) instead.
748+
747749
Use `isObject()` or `is.object()` to check if **any** `value` is an `object` of a generic `Obj` type and [`Object`][object] instance.
748750

749751
```typescript

packages/type/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ isBooleanType(BOOLEAN_INSTANCE); // false
445445

446446
### isDefined
447447

448-
Use `isDefined()` or `is.defined()` to check if an **unknown** `value` is NOT an `undefined` type and is NOT equal to `undefined`.
448+
Use `isDefined()` or `is.defined()` to check if an **unknown** `value` is **not** an `undefined` type and is **not** equal to `undefined`.
449449

450450
```typescript
451451
const isDefined: IsDefined = (value: unknown, callback: ResultCallback = resultCallback): boolean =>
@@ -744,6 +744,8 @@ isNumberType(NUMBER_NEW_INSTANCE); // false
744744

745745
![update][update]
746746

747+
* Removed `key` parameter. Use [`isObjectKeyIn`](#isobjectkin) instead.
748+
747749
Use `isObject()` or `is.object()` to check if **any** `value` is an `object` of a generic `Obj` type and [`Object`][object] instance.
748750

749751
```typescript

0 commit comments

Comments
 (0)