Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { get } from 'lodash';
import 'calypso/state/google-my-business/init';
/**
* Returns the current interval of a Google Business Profile stats chart or the
* default value, 'week'
* @param {Object} state Global state tree
* @param {number} siteId Site ID
* @param {string} statType 'QUERIES' | 'VIEWS' | 'ACTIONS'
* @returns {string} interval 'week' | 'month' | 'quarter'
*/
export function getStatsInterval( state, siteId, statType ) {
return get( state.googleMyBusiness, [ siteId, 'statsInterval', statType ], 'week' );
}