https://github.com/yashko/vk-validation-node
Passing security check on vk.com with phone number on server side
https://github.com/yashko/vk-validation-node
vk vkontakte
Last synced: 3 months ago
JSON representation
Passing security check on vk.com with phone number on server side
- Host: GitHub
- URL: https://github.com/yashko/vk-validation-node
- Owner: Yashko
- Created: 2016-07-29T15:55:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T16:32:17.000Z (over 8 years ago)
- Last Synced: 2025-01-30T17:38:31.706Z (12 months ago)
- Topics: vk, vkontakte
- Language: JavaScript
- Size: 840 KB
- Stars: 15
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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