https://github.com/scriptnull/twitter-oauth-echo
Express Middleware for Twitter Oauth Echo
https://github.com/scriptnull/twitter-oauth-echo
Last synced: 10 months ago
JSON representation
Express Middleware for Twitter Oauth Echo
- Host: GitHub
- URL: https://github.com/scriptnull/twitter-oauth-echo
- Owner: scriptnull
- License: mit
- Created: 2015-06-12T23:59:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-06-13T01:19:32.000Z (over 10 years ago)
- Last Synced: 2025-03-29T02:36:46.066Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 984 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.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