Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/x-is-string/README.md')
-rw-r--r--assets/node_modules/x-is-string/README.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/assets/node_modules/x-is-string/README.md b/assets/node_modules/x-is-string/README.md
new file mode 100644
index 0000000..99977d4
--- /dev/null
+++ b/assets/node_modules/x-is-string/README.md
@@ -0,0 +1,46 @@
+# x-is-string
+
+Simple string test
+
+## Example
+
+```js
+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 \ No newline at end of file