Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/writetome51/is-string-not-string
2 functions that check if argument is or is not string
https://github.com/writetome51/is-string-not-string
is-string javascript not-string type-check
Last synced: about 16 hours ago
JSON representation
2 functions that check if argument is or is not string
- Host: GitHub
- URL: https://github.com/writetome51/is-string-not-string
- Owner: writetome51
- License: mit
- Created: 2019-04-09T18:54:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-27T17:14:12.000Z (over 4 years ago)
- Last Synced: 2024-12-08T23:49:02.298Z (25 days ago)
- Topics: is-string, javascript, not-string, type-check
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# isString(arg): boolean
Returns true if `arg` is type 'string'.
# notString(arg): boolean
## Installation
`npm i @writetome51/is-string-not-string`## Loading
```js
import { isString, notString } from '@writetome51/is-string-not-string';
```