Skip to content

Commit 4d5087c

Browse files
docs(README.md): update
1 parent 13346e5 commit 4d5087c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,6 +1501,8 @@ The **return value** is a `boolean` indicating whether or not the `value` is `un
15011501

15021502
### BigIntObject
15031503

1504+
The object to create [`BigInt`][bigint] object by assign value to `set` property.
1505+
15041506
```typescript
15051507
class BigIntObject {
15061508
static set set(value: any) {
@@ -1516,6 +1518,8 @@ class BigIntObject {
15161518

15171519
### BooleanObject
15181520

1521+
The object to create [`Boolean`][boolean] object by assign value to `set` property.
1522+
15191523
```typescript
15201524
class BooleanObject {
15211525
/**
@@ -1535,6 +1539,8 @@ class BooleanObject {
15351539

15361540
### NumberObject
15371541

1542+
The object to create [`Number`][number] object by assign value to `set` property.
1543+
15381544
```typescript
15391545
class NumberObject {
15401546
static set set(value: any) {
@@ -1550,6 +1556,8 @@ class NumberObject {
15501556

15511557
### PrimitiveObject
15521558

1559+
The object to store static primitive objects.
1560+
15531561
```typescript
15541562
class PrimitiveObject {
15551563
static bigint: BigInt;
@@ -1564,6 +1572,8 @@ class PrimitiveObject {
15641572

15651573
### StringObject
15661574

1575+
The object to create [`String`][string] object by assign value to `set` property.
1576+
15671577
```typescript
15681578
class StringObject {
15691579
static set set(value: any) {
@@ -1579,6 +1589,8 @@ class StringObject {
15791589

15801590
### SymbolObject
15811591

1592+
The object to create [`Symbol`][symbol] object by assign value to `set` property.
1593+
15821594
```typescript
15831595
class SymbolObject {
15841596
static set set(value: string | number | undefined) {

0 commit comments

Comments
 (0)