Skip to content

Commit

Permalink
docs: README.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
VicGUTT committed Dec 4, 2021
1 parent d19ff3c commit b68b461
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,15 @@ isFloat(123.0); // false
isFloat(123.123); // true
```

### **is.formData / isFormData** _([Source](https://github.com/VicGUTT/isjs/blob/main/src/isFormData.ts) | [Tests](https://github.com/VicGUTT/isjs/blob/main/tests/is/isFormData.test.ts))_

Determines whether the given value is a FormData object.

```js
isFormData({}); // false
isFormData(new FormData()); // true
```

### **is.function / isFunction** _([Source](https://github.com/VicGUTT/isjs/blob/main/src/isFunction.ts) | [Tests](https://github.com/VicGUTT/isjs/blob/main/tests/is/isFunction.test.ts))_

Determines whether the given value is a function.
Expand Down Expand Up @@ -900,6 +909,15 @@ isUndefined(''); // false
isUndefined(undefined); // true
```

### **is.urlSearchParams / isUrlSearchParams** _([Source](https://github.com/VicGUTT/isjs/blob/main/src/isUrlSearchParams.ts) | [Tests](https://github.com/VicGUTT/isjs/blob/main/tests/is/isUrlSearchParams.test.ts))_

Determines whether the given value is a URLSearchParams object.

```js
isUrlSearchParams({}); // false
isUrlSearchParams(new URLSearchParams()); // true
```

### **is.weakMap / isWeakMap** _([Source](https://github.com/VicGUTT/isjs/blob/main/src/isWeakMap.ts) | [Tests](https://github.com/VicGUTT/isjs/blob/main/tests/is/isWeakMap.test.ts))_

Determines whether the given value is a WeakMap.
Expand Down

0 comments on commit b68b461

Please sign in to comment.