Is string a JS Type
npm install is-js-type
> Is string a JS Type
Uses Sindre Sorhus' js-types
npm install --save is-js-type
`Usage
$3
`javascript
import isJsType from 'is-js-type';isJsType('Array');
// => true
isJsType('Error');
// => true
isJsType('array');
// => false
isJsType('dog');
// => false
``