diff options
Diffstat (limited to 'together/node_modules/has/README.md')
-rw-r--r-- | together/node_modules/has/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/together/node_modules/has/README.md b/together/node_modules/has/README.md new file mode 100644 index 0000000..635e3a4 --- /dev/null +++ b/together/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 +``` |