This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ctm() { var u = 'undefined'; return ((typeof document.querySelector !== u) && (typeof localStorage !== u) && (typeof window.addEventListener !== u)) ? true : false;} | |
function ctm() {var u='undefined';return typeof document.querySelector!==u && typeof localStorage!==u && typeof window.addEventListener!==u ? true:false;} | |
function ctm(){return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window ? true:false} | |
function ctm(){try{return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window ? true:false;}catch(){return false}} | |
function ctm(){return 'querySelector' in document && 'localStorage' in window && 'addEventListener' in window} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A module for retrieving information about Photos from Foursquare. | |
* @module "node-foursquare.Photos" | |
*/ | |
/** | |
* Create a new Photos object. | |
* @constructor | |
* @param {Object} config A valid configuration. |