// Copied from Core.
export const arrayToClassName = ( array, action ) => {
	return array
		.filter( ( item ) => 'object' === typeof ( item ) ? Object.entries( item )[ 0 ][ 1 ] : item )
		.map( ( item ) => {
			const value = 'object' === typeof ( item ) ? Object.entries( item )[ 0 ][ 0 ] : item;

			return action ? action( value ) : value;
		} )
		.join( ' ' );
};

export const htmlDecodeTextContent = ( input ) => {
	const doc = new DOMParser().parseFromString( input, 'text/html' );
	return doc.documentElement.textContent;
};

export const replaceUtmPlaceholders = ( link = '', utms = {} ) => {
	if ( ! link || ! utms ) {
		return link;
	}

	Object.keys( utms ).forEach( ( key ) => {
		const match = new RegExp( `%%${ key }%%`, 'g' );
		link = link.replace( match, utms[ key ] );
	} );

	return link;
};
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://dynamicsolare.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-pxl-template-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-portfolio-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-service-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-team-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-taxonomies-portfolio-category-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-taxonomies-service-category-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-taxonomies-product_tag-1.xml</loc></sitemap><sitemap><loc>https://dynamicsolare.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
