summaryrefslogtreecommitdiff
path: root/node_modules/has/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/has/README.md')
-rw-r--r--node_modules/has/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/has/README.md b/node_modules/has/README.md
new file mode 100644
index 0000000..635e3a4
--- /dev/null
+++ b/node_modules/has/README.md
@@ -0,0 +1,18 @@
+# has
+
+> Object.prototype.hasOwnProperty.call shortcut
+
+## Installation
+
+```sh
+npm install --save has
+```
+
+## Usage
+
+```js
+var has = require('has');
+
+has({}, 'hasOwnProperty'); // false
+has(Object.prototype, 'hasOwnProperty'); // true
+```