https://github.com/keybase/node-installer
An installer/updater for the node client.
https://github.com/keybase/node-installer
Last synced: about 1 year ago
JSON representation
An installer/updater for the node client.
- Host: GitHub
- URL: https://github.com/keybase/node-installer
- Owner: keybase
- License: bsd-3-clause
- Archived: true
- Created: 2013-12-31T21:55:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-23T14:20:08.000Z (almost 11 years ago)
- Last Synced: 2025-04-10T12:41:33.854Z (about 1 year ago)
- Language: CoffeeScript
- Size: 38 MB
- Stars: 117
- Watchers: 23
- Forks: 9
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
is-property
===========
Tests if a property of a JavaScript object can be accessed using the dot (.) notation or if it must be enclosed in brackets, (ie use x[" ... "])
Example
-------
```javascript
var isProperty = require("is-property")
console.log(isProperty("foo")) //Prints true
console.log(isProperty("0")) //Prints false
```
Install
-------
npm install is-property
### `require("is-property")(str)`
Checks if str is a property
* `str` is a string which we will test if it is a property or not
**Returns** true or false depending if str is a property
## Credits
(c) 2013 Mikola Lysenko. MIT License