/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/isolate-modules-async/main.js
15 строк
306 B
cin
fix: isolate esm async import bug (#14397)
21 авг 2023, 15:08
Не верифицирован
21 авг 2023, 15:08
58e8491
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ let myState = 0; export function incState() { myState += 1; } export function getState() { return myState; }