/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/core/window/history.js
14 строк
239 B
Ryan Cebulko
♻️ Migrate most of #core to pass TS typechecking (#37141)
09 дек 2021, 21:22
Не верифицирован
09 дек 2021, 21:22
58a1c29
Код
Авторство
О чём код?
/** * Gets state from History. * But IE11 throws if there is no state. * * @param {History} history * @return {*} */ export function getHistoryState(history) { try { return history.state; } catch (e) { return null; } }