/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/bento/util/unit-helpers.js
9 строк
216 B
Keshav Varadachari
split out amp-agnostic parts of bento unit tests tests and creates unit tests for standalone components (#37952)
28 мар 2022, 20:22
Не верифицирован
28 мар 2022, 20:22
f74833d
Код
Авторство
О чём код?
/** * @param {Window} win * @param {string} css */ export function adoptStyles(win, css) { const style = win.document.createElement('style'); style.textContent = css; win.document.head.appendChild(style); }