Check does the given Javascript Object is a string.
npm install jsmicro-is-stringCheck does the given Javascript Object (array, object, string, etc) is a string.
Check does the given Javascript Object (array, object, string, etc) is not a string.
``bash`
bower install --save jsmicro-is-string
`html`
`bash`
npm install --save jsmicro-is-string
`js
const str = require('jsmicro-is-string');
// Available in the global object.
isString('String'); // true
isString(23322333); // false
isNotString(23234); // true
// Also available in the export object.
str.isString('String'); // true
str.isString(23322333); // false
str.isNotString(23333); // true
`
#### v1.0.1 - May 21, 2016
* Added .npmignore
#### v1.0.0 - May 19, 2016`
* Initial release.