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