tree: c2b63f768c724504482518085526f0b33e4ff92e [path history] [tgz]
  1. .npmignore
  2. .travis.yml
  3. index.js
  4. LICENCE
  5. package.json
  6. README.md
node_modules/x-is-string/README.md

x-is-string

Simple string test

Example

var isString = require("x-is-string")

isString("hello")
// -> true

isString("")
// -> true

isString(new String("things"))
// -> true

isString(1)
// -> false

isString(true)
// -> false

isString(new Date())
// -> false

isString({})
// -> false

isString(null)
// -> false

isString(undefined)
// -> false

Installation

npm install x-is-string

Contributors

  • Matt-Esch

MIT Licenced