File size: 306 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
/**
 * Given a theme stylesheet string (like 'pub/twentysixteen'), returns the corresponding theme ID ('twentysixteen').
 */
export const getThemeIdFromStylesheet = ( stylesheet: string ) => {
	const [ , slug ] = stylesheet?.split( '/', 2 ) ?? [];
	if ( ! slug ) {
		return stylesheet;
	}
	return slug;
};