/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test/e2e/edge-runtime-dynamic-code/lib/utils.js
13 строк
281 B
Tim Neutkens
Convert test/integration to isolated tests (#93247)
11 май 2026, 14:55
Не верифицирован
11 май 2026, 14:55
8141dcf
Код
Авторство
О чём код?
export async function usingEval() { // eslint-disable-next-line no-eval return { value: eval('100') } } export async function notUsingEval() { return { value: 100 } } export function usingEvalSync() { // eslint-disable-next-line no-eval return { value: eval('100') } }