.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / has / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/has/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/has/README.md
new file mode 100644 (file)
index 0000000..635e3a4
--- /dev/null
@@ -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
+```