https://github.com/keybase/node-client
CLI for keybase.io written in/for Node.js
https://github.com/keybase/node-client
Last synced: 3 months ago
JSON representation
CLI for keybase.io written in/for Node.js
- Host: GitHub
- URL: https://github.com/keybase/node-client
- Owner: keybase
- License: bsd-3-clause
- Created: 2013-10-25T17:42:31.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-09-15T14:55:14.000Z (over 9 years ago)
- Last Synced: 2025-01-18T00:06:39.423Z (12 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 16.8 MB
- Stars: 300
- Watchers: 39
- Forks: 31
- Open Issues: 74
-
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