summary refs log tree commit diff
path: root/resources/app/node_modules/is-plain-obj/readme.md
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-08-19 12:17:51 +0200
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-08-19 12:17:51 +0200
commitea7016bdb1d9fb7de1a66a94b3de3b3c9e0f32c9 (patch)
tree22a6413c757bb2cc709a51f851d5718298430c0d /resources/app/node_modules/is-plain-obj/readme.md
download9anime-client-master.tar.gz
9anime-client-master.tar.bz2
9anime-client-master.zip
Initial Commit HEAD master
Diffstat (limited to 'resources/app/node_modules/is-plain-obj/readme.md')
-rw-r--r--resources/app/node_modules/is-plain-obj/readme.md35
1 files changed, 35 insertions, 0 deletions
diff --git a/resources/app/node_modules/is-plain-obj/readme.md b/resources/app/node_modules/is-plain-obj/readme.md
new file mode 100644
index 0000000..269e56a
--- /dev/null
+++ b/resources/app/node_modules/is-plain-obj/readme.md
@@ -0,0 +1,35 @@
+# is-plain-obj [![Build Status](https://travis-ci.org/sindresorhus/is-plain-obj.svg?branch=master)](https://travis-ci.org/sindresorhus/is-plain-obj)
+
+> Check if a value is a plain object
+
+An object is plain if it's created by either `{}`, `new Object()` or `Object.create(null)`.
+
+
+## Install
+
+```
+$ npm install --save is-plain-obj
+```
+
+
+## Usage
+
+```js
+var isPlainObj = require('is-plain-obj');
+
+isPlainObj({foo: 'bar'});
+//=> true
+
+isPlainObj([1, 2, 3]);
+//=> false
+```
+
+
+## Related
+
+- [is-obj](https://github.com/sindresorhus/is-obj) - Check if a value is an object
+
+
+## License
+
+MIT © [Sindre Sorhus](http://sindresorhus.com)