1.0.4 • Published 9 years ago

google-client-api v1.0.4

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

#google-client-api ##module.exports(onComplete) ⏏ This module is a function which will return a Google Client API object assynchronously.

This function returns a promise. (if you're into promises) Which will return the gapi Object.

If you're not into promises then you can simply call this function and pass in a callback object.

Params

  • onComplete function - an optional callback which will return the Google Client API Object.

Returns: Promise - This function also returns a promise if you're into promises which will return the Google Client API Object.
##Example Using with Promise:

require( 'google-client-api' )().then( function( gapi ) {
	// Do something with the gapi object
});

Using with callback:

require( 'google-client-api' )( function( gapi ) {
	// Do something with the gapi object
});