/
githubmirror
/
browser-extension
Обзор
Документация
Войти
/
githubmirror
/
browser-extension
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/helpers/runtimeFunctionStrings.ts
11 строк
334 B
David Corbitt
Big bang
08 апр 2023, 04:27
08 апр 2023, 04:27
56260be
Код
Авторство
О чём код?
// TypeScript function function scrollIntoViewFunction() { // @ts-expect-error this is run in the browser context this.scrollIntoView({ block: 'center', inline: 'center', // behavior: 'smooth', }); } // Convert the TypeScript function to a string export const scrollScriptString = scrollIntoViewFunction.toString();