Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfachLeo committed Jul 14, 2024
2 parents 6344a53 + 80f50b0 commit 74303c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/hexafuchs/what.js/fix-ts-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/hexafuchs/what.js/actions?query=workflow%3A"Fix+Typescript+code+style+issues"+branch%3Amain)
[![Monthly Downloads](https://img.shields.io/npm/dm/%40hexafuchs%2Fwhat.js?style=flat-square)](hhttps://www.npmjs.com/package/@hexafuchs/what.js)



This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

## Installation
Expand All @@ -28,8 +26,8 @@ console.log(isNull(null));
### Functions

| Name | Description |
|--------------------------------------|----------------------------------------------------------------------------------------------------------|
| isNull(obj) | Check if variable is null |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------- |
| isNull(obj) | Check if variable is null |
| isUndefined(obj) | Check if variable is undefined |
| isNumber(obj) | Check if variable is a number (integer or float) |
| isString(obj) | Check if variable is a string |
Expand All @@ -42,7 +40,6 @@ console.log(isNull(null));
| isEmpty(obj) | Check if variable is null, undefined, false. zero, an empty string, an empty array, or an empty object |
| isNotEmpty(obj) | Inverted version of isEmpty |


## Testing

```bash
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"rootDir": ".",
"paths": {
"@/*": ["./src/*"],
"@@/*": ["./*"],
"@@/*": ["./*"]
},
"target": "ESNext",
"useDefineForClassFields": true,
Expand All @@ -19,8 +19,8 @@
"noUnusedParameters": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client", "node"],
"types": ["vite/client", "node"]
},
"include": ["src"],
"exclude": ["**/*.test.ts", "node_modules", "test/**", ".history/**"],
"exclude": ["**/*.test.ts", "node_modules", "test/**", ".history/**"]
}

0 comments on commit 74303c7

Please sign in to comment.