1.0.2 • Published 9 years ago

vk-api-open-methods v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

vk-api-open-methods Build Status

Just a list of VK API (v5.37) methods that don't require authentication.

Install

$ npm install --save vk-api-open-methods

Usage

The module is basically an instance of JavaScript Array, so...

var openMethods = require('vk-api-open-methods');
var method = 'friends.get';

if (openMethods.indexOf(method) !== -1)
	console.log('Hurray!');

Related

License

MIT © Dmitriy Sobolev