Skip to content
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

chore: fix typo on readme #23

Merged
merged 2 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/workflows/codeql.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ on:
push:
branches: [ master ]

workflow_dispatch: {}

jobs:
release:
name: Node.js
uses: node-modules/github-actions/.github/workflows/node-release.yml@master
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
with:
checkTest: false
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
is-type-of
==========
# is-type-of

Complete type checking for Node

## Features

- 🔒 Usefull Type Checking,including Primitive, Standard Object, Node Object
- 🔒 Useful Type Checking,including Primitive, Standard Object, Node Object
- ✨ Typescript Support
- 🚪 Typescript Type Guard Support

## Install

```
```bash
npm install is-type-of
```

Expand All @@ -24,7 +23,7 @@ import is from 'is-type-of';
import { isArray } from 'is-type-of';

isArray([]); // => true
is.array(); // => true
is.array([]); // => true
```

Compatible With
Expand Down Expand Up @@ -288,4 +287,4 @@ See Also `is.longObject`

## License

MIT
[MIT](LICENSE)
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@
"benchmark": "^2.1.4",
"core-util-is": "^1.0.3",
"egg-bin": "^6.5.2",
"eslint": "^8.49.0",
"eslint": "^8.54.0",
"eslint-config-egg": "^13.0.0",
"long": "^3.2.0",
"semver": "^5.4.1",
"ts-expect": "^1.3.0",
"tshy": "^1.0.0",
"tshy-after": "^1.0.0",
"typescript": "^5.2.2"
"typescript": "~5.2.2"
},
"types": "./dist/commonjs/index.d.ts"
}