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