Your IP : 216.73.216.138


Current Path : /home/ereika83/www/wp-content/plugins/wp-hummingbird/_src/react/data/minify/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/wp-hummingbird/_src/react/data/minify/selectors.js

/**
 * Get option.
 *
 * @param {Object} state
 * @param {string} option
 * @return {boolean} CDN state.
 */
export const getOption = ( state, option ) => {
	return state.options?.[ option ];
};

/**
 * Get options.
 *
 * @param {Object} state
 * @return {Object} Options object.
 */
export const getOptions = ( state ) => {
	return state.options;
};

/**
 * Get assets.
 *
 * @param {Object} state
 * @return {Object} Assets object.
 */
export const getAssets = ( state ) => {
	return state.assets;
};