/
githubmirror
/
amphtml
Обзор
Документация
Войти
/
githubmirror
/
amphtml
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/amp-script/export-functions.js
5 строк
193 B
Jake Fried
🐛 Bump worker dom, fixes storage access in sandbox (#36031)
14 сен 2021, 22:42
Не верифицирован
14 сен 2021, 22:42
219ff32
Код
Авторство
О чём код?
exportFunction('getData', () => ({data: true})); const visits = Number(localStorage.getItem('visits') ?? 0) + 1; localStorage.setItem('visits', visits); console.log(`Visit count: ${visits}`);