|
|
il y a 5 jours | |
|---|---|---|
| .. | ||
| test | il y a 5 jours | |
| .npmignore | il y a 5 jours | |
| .travis.yml | il y a 5 jours | |
| LICENCE | il y a 5 jours | |
| README.md | il y a 5 jours | |
| index.js | il y a 5 jours | |
| package.json | il y a 5 jours | |
Simple string test
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
npm install x-is-string