/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
packages/data-stores/src/theme/utils.ts
10 строк
306 B
arthur791004
Virtual Themes: Switch to the assembleSite endpoint to get rid of the headstart (#80734)
21 авг 2023, 09:19
Не верифицирован
21 авг 2023, 09:19
d7a2778
Код
Авторство
О чём код?
/** * 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; };