summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/has/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/has/README.md')
-rw-r--r--deps/npm/node_modules/has/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/deps/npm/node_modules/has/README.md b/deps/npm/node_modules/has/README.md
new file mode 100644
index 0000000000..635e3a4baa
--- /dev/null
+++ b/deps/npm/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
+```