1.0.1 • Published 4 years ago

@bemoje/is-string v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@bemoje/is-string

Returns true if the argument is a string; false otherwise.

Version

Travis CI

Dependencies

Stats

Donate

Installation

npm install @bemoje/is-string
npm install --save @bemoje/is-string
npm install --save-dev @bemoje/is-string

Usage

import isString from '@bemoje/is-string'

isString('')
//=> true

isString('asd')
//=> true

isString(String('asd'))
//=> true

isString(new String('asd'))
//=> true

isString(2)
//=> false

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

#n