https://github.com/suhdev/songkick-wrapper
A wrapper around SongKick API
https://github.com/suhdev/songkick-wrapper
Last synced: 5 months ago
JSON representation
A wrapper around SongKick API
- Host: GitHub
- URL: https://github.com/suhdev/songkick-wrapper
- Owner: suhdev
- License: gpl-2.0
- Created: 2015-05-12T12:40:40.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-24T17:34:02.000Z (over 10 years ago)
- Last Synced: 2025-08-17T08:57:03.279Z (11 months ago)
- Language: HTML
- Size: 1.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- 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