some deletions
[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
deleted file mode 100644 (file)
index 635e3a4..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# 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
-```